自定义片段中的图像

时间:2018-03-12 14:26:35

标签: android image android-fragments android-image

我正在尝试将我的图像设为圆形(注意:不尝试使ImageView成为圆形而是图像)并用背景颜色填充它。 我的片段代码:

  @Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
                         Bundle savedInstanceState) {
    View rootview = inflater.inflate(R.layout.activity_profile, container, false);
    ImageView mView = (ImageView) rootview.findViewById(R.id.dp);
    RoundedBitmapDrawable im = RoundedBitmapDrawableFactory.create(getActivity().getResources(), BitmapFactory.decodeResource(getActivity().getResources(), R.drawable.my_image));
    im.setCircular(true);
    im.setColorFilter(ContextCompat.getColor(getContext(), R.color.colorAccent), PorterDuff.Mode.DST_OVER);
    mView.setImageDrawable(im);
    return rootview;
}

我得到的是一个非圆形图像,在运行应用程序时没有背景颜色。

编辑:我使用

取得了成绩
<de.hdodenhof.circleimageview.CircleImageView
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/profile_image"
    android:layout_width="96dp"
    android:layout_height="96dp"
    android:src="@drawable/profile"
    app:civ_border_width="2dp"
    app:civ_border_color="#FF000000"/>

但我仍然想知道为什么第一个代码不起作用。

编辑:
我也试过im.setCornerRadius(Math.max(src.getWidth(), src.getHeight()) / 2.0f);,但无济于事

编辑2:
我正在使用Glide(我真的觉得从问题中省略这些信息感到愚蠢)来显示来自firebase存储的图像,结果发现滑行图像不是可绘制的,而是可过渡绘制的,这就是代码无效的原因

1 个答案:

答案 0 :(得分:1)

您可以使用drawable制作ImageView圆形。在drawable文件夹中创建新的xml文件。

<shape xmlns:android="http://schemas.android.com/apk/res/android"

    android:shape="oval">
    <solid
        android:color="@color/myColor">
    </solid>

</shape>

color.xml

中实现您的颜色
<color name="myColor">#ffffff</color>

最后为您的ImageView设置背景 希望它有所帮助。