我有一个非常基本的布局如下。我只是在 ImageView 中使用红色背景来描述情况。
<?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="wrap_content"
android:background="@drawable/custom_bg_grey_stroke_radius"
android:orientation="vertical" >
<ImageView
android:id="@+id/IV"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_alignParentLeft="true"
android:background="#ff0000" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Text"
android:layout_toRightOf="@+id/IV" />
</RelativeLayout>
这是我正在使用的自定义背景:
custom_bg_grey_stroke_radius.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<!-- background color of the entire rectangle -->
<solid android:color="#FFFFFF" />
<!-- color of borders -->
<stroke
android:width="1dp"
android:color="#c1c1c1" />
<corners
android:bottomLeftRadius="4dp"
android:bottomRightRadius="4dp"
android:topLeftRadius="4dp"
android:topRightRadius="4dp" />
</shape>
我发现了各种链接,这些链接使图像呈圆形,但来自所有 4 个角落。此链接告诉如何使图像从顶部或底部变为圆形。 Android围绕一个布局背景图像,只有顶角或底角
有人可以弄清楚如何从左侧制作图像圆形。如果我能指定确切的半径就好了。我希望它只是在 5dp 附近呈圆形。
而且,我为重复性道歉,但我无法解决这个问题。