在我的布局中,我正在尝试绘制一个DOTTED LINE.for绘制一条水平线,我在我的布局文件中定义了一个视图.
android:layout_width="fill_parent"
android:layout_height="1dip"
android:background="@drawable/customdots" />
和customdots.xml
android:left="10dp"
android:right="10dp"
android:width="4dp"
android:drawable="@drawable/dotted" />
dotted.xml
android:shape="line" >
android:height="4dp"
android:width="1024dp"/>
android:width="4dp"
android:dashWidth="4dp"
android:color="@android:color/black"
android:dashGap="5dp"/>
但是我没有使用这段代码.请帮帮我.
当我在listView Divider中使用customdots.xml时
android:divider="@drawable/customdots"
它显示了一个很好的虚线