Android Dash/doted line issue?

android, android-background, android-imageview

Solution

set `android:layerType="software"` for your imageView. Check the docs for android:layerType.

Problem

When I am using android dotted line its working fine in Small screens, but not working in Samsung S3 device and higher versions. Screenshots And 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" /> ``` If someone can help me out in this, any idea is appreciable.

Original source

Related problems