从左侧创建ImageView或其父圆形

时间:2014-06-13 14:09:25

标签: android android-imageview android-shape

我有一个非常基本的布局如下。我只是在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 round a Layouts background image, only top or bottom corners

有人可以弄清楚如何从左侧制作图像圆形。 如果我能指定确切的半径会很好。我希望它在5dp左右几乎不变。

而且,我为重复性道歉,但我还是无法解决这个问题。

0 个答案:

没有答案