在图像android上绘制一个矩形

时间:2018-08-03 15:59:14

标签: xml android-layout

你好,我想在imageview上绘制一个矩形。 像这样

enter image description here

我创建了可绘制形状

    <?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <stroke
        android:dashGap="1dp"
        android:dashWidth="1dp"
         android:width="1dp"
        android:color="@color/divider_color"/>
    <padding
        android:bottom="5dp"
        android:left="5dp"
        android:right="5dp"
        android:top="5dp" />
</shape>

我在Layout.xml上这样叫

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/retangle_line">

    <ImageView
        android:id="@+id/coverImageView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_gravity="center"
        android:scaleType="centerCrop"
        />
</RelativeLayout>

但它会生成此图像 enter image description here

1 个答案:

答案 0 :(得分:1)

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">

<ImageView
    android:id="@+id/coverImageView"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_gravity="center"
    android:scaleType="centerCrop"
    />

<View 
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_gravity="center"
    android:background="@drawable/retangle_line"
    android:layout_margin="50dp"
    />

 </RelativeLayout>