1

我想画一条线作为ImageView's背景。但它不起作用?

<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="line">
    <solid android:color="#FF0000FF" />
    <size android:width="10dp"
        android:height="2dp"/>
</shape>

只是一个演示。

<ImageView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/dividing_line"
    android:layout_marginLeft="10dp" />
4

1 回答 1

0

ImageView没有内容,因此大小将为 0x0dp。如果您想要一个分隔线,请尝试将widthtomatch_parent和 the设置height为您觉得舒服的任何东西(2dp例如)。

更新:试试这个。

在您的布局文件中:

<ImageView
    android:layout_width="match_parent"
    android:layout_height="4dp"
    android:background="@drawable/dividing_line"
    android:layout_marginLeft="10dp" />

可绘制对象:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="line">
    <stroke android:width="2dp" android:color="#0000FF"/>
    <size android:height="2dp" />
</shape>

它对我有用。


正如TheTool所指出的,如果您只想要一个分隔线,更简单的解决方案是添加

<View android:layout_width="match_parent" 
      android:layout_height="2dp" 
      android:background="@color/yourColor" />

到您的布局文件。

于 2015-12-21T09:18:03.000 回答