Android の点線を使用している場合、小さな画面では問題なく動作しますが、Samsung S3 デバイス以降のバージョンでは動作しません。
スクリーンショット
と
drawable/dashline.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="line" >
<stroke
android:dashWidth="20sp"
android:dashGap="20sp"
android:width="2dp"
android:color="#FF0000" />
</shape>
XML
<ImageView
android:id="@+id/button1"
android:layout_width="fill_parent"
android:layout_height="6dp"
android:background="@drawable/dash_line" />
誰かがこれで私を助けることができれば、どんなアイデアでもかなりの価値があります.