当我使用android 虚线时,它在小屏幕上工作正常,但在三星 S3 设备和更高版本中不工作。
截图
和
可绘制/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" />
如果有人可以在这方面帮助我,任何想法都是可以理解的。