在片段中自定义图像

customizing Image in a Fragment

我试图使我的图像成为圆形(注意:不是试图使 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 存储的图像,结果证明来自 glide 的图像不是位可绘制的,而是转换可绘制的,这就是代码不起作用的原因

您可以使用 drawable 制作 ImageView 圆形。在可绘制文件夹中创建新的 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 设置了背景 希望对你有帮助。

我正在使用 Glide(我真的觉得从问题中遗漏这些信息很愚蠢)来显示来自 firebase 存储的图像,结果证明来自 glide 的图像不是 bit-drawable,而是 transition-drawable 这就是代码不起作用的原因