android – 如何创建圆形facebook个人资料图片

我无法使用此库将我的一个图像动态地制作成一个圆圈.这是我的尝试:

private void drawerSetup() {
    Profile profile = Profile.getCurrentProfile();
    ProfilePictureView profilePictureView = (ProfilePictureView) findViewById(R.id.profile_image);
    CircularImageView circularProfilePicture = (CircularImageView)    findViewById(R.id.profile_image_circle);
    if(profilePictureView != null) {
        profilePictureView.setProfileId(profile.getId());
        ImageView imageView = ((ImageView)profilePictureView.getChildAt(0));
        Bitmap bitmap = ((BitmapDrawable)imageView.getDrawable()).getBitmap();
        circularProfilePicture.setImageBitmap(bitmap);
    }
}

布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="200dp"
    xmlns:facebook="http://schemas.android.com/apk/res-auto"
    xmlns:app="http://schemas.android.com/tools"
    android:background="@drawable/side_nav_bar"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:theme="@style/ThemeOverlay.AppCompat.Dark"
    android:orientation="vertical"
    android:gravity="bottom"
    app:showIn="@layout/activity_news_feed">

<com.facebook.login.widget.ProfilePictureView
    android:id="@+id/profile_image"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    facebook:com_facebook_preset_size="normal"
    android:layout_centerHorizontal="true"
    android:layout_centerVertical="true"
    android:paddingBottom="8dp"
    android:layout_centerInParent="true" />

<com.mikhaellopez.circularimageview.CircularImageView
    android:layout_width="100dp"
    android:layout_height="100dp"
    app:border_color="#EEEEEE"
    app:border_width="2dp"
    app:shadow="true"
    app:shadow_radius="10"
    android:id="@+id/profile_image_circle"
    app:shadow_color="#000000"
    android:layout_alignBottom="@+id/profile_image"
    android:layout_toLeftOf="@+id/profile_image"
    android:layout_toStartOf="@+id/profile_image" />

我知道当我调用profilePictureView.setProfileId(profile.getId())时,我的profilePictureView正确显示;在我的布局上,它显示正确.但是,当我尝试调用circularProfilePicture时,我只是得到一张“空”照片.似乎没有正确识别/设置图像的位图.图像不会像profilePictureView那样显示.有什么想法可能会发生吗?

解决方法:

在使用了不同的图像库(包括Picasso)之后,我完成了使用名为Fresco的Facebook.使用更少的代码,速度更快,每个工作都应该如此.

壁画支持:

>渐进式JPEG流式传输
>显示动画GIF和WebP
>广泛的图像加载和显示定制

医生也这么说

In Android 4.x and lower, Fresco puts images in a special region of Android memory. This lets your application run faster – and suffer the dreaded OutOfMemoryError much less often.

当您搜索时,它还支持圆角,请参阅here.

布局示例:

        <com.facebook.drawee.view.SimpleDraweeView
            android:id="@+id/avatarImageView"
            android:layout_width="50dp"
            android:layout_height="50dp"
            fresco:placeholderImageScaleType="centerCrop"
            fresco:placeholderImage="@drawable/photo_placeholder"
            fresco:roundAsCircle="true"/>

注意:别忘了打电话给Fresco.initialize(这个);某处(通常在你的Application类中).

我还应该注意到Fresco目前使用ProGuard为您的应用程序添加了2.6Mb.如果您想要更少的功能,您可以选择使用另一个库,如Glide.

上一篇:android-通过linearlayout移动图像


下一篇:从字符串获取android的id资源