0

我已经浏览了所有虚线分隔线主题,但不知何故我的问题仍然存在:

我有一个垂直的线性布局,并希望在线性布局中的每个项目之间显示虚线分隔线。我使用以下形状,但仍然得到一条直线。

<?xml version="1.0" encoding="utf-8"?>
    <shape xmlns:android="http://schemas.android.com/apk/res/android"
        android:shape="line">

    <stroke
        android:color="#7b7b75"
        android:dashGap="2dp"
        android:dashWidth="1dp"
    />

    <size android:height="1dp"/>



</shape>
4

1 回答 1

0

请试试这个。

drawable/dotted.xml:

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="line">

    <stroke
       android:color="#C7B299"
       android:dashWidth="10px"
       android:dashGap="10px" />
</shape>

视图.xml:

<ImageView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:src="@drawable/dotted" />
于 2013-02-13T13:04:47.633 回答