前言:平时我们经常使用shape用来绘制背景图,通常的用法确实没有什么问题,但是你遇到过画虚线嘛?
实现虚线的shape画法:
shape_dash_line.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="line">
<size android:height="1dp" />
<stroke
android:dashGap="3dp"
android:dashWidth="8dp"
android:width="1dp"
android:color="#848C99" />
</shape>
这是很普遍的写法,相信大家都会写。
然后写个 view ,设置它的 background 为 @draw/shape_dash_line ,然而却发现在 Android Studio 预览面板上并没有显示这条虚线。
<View
android:id="@+id/line"
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:background="@drawable/shape_dash_line"/>
image.png
问题1:画的虚线为什么没有显示出来?
解答:原因在于设置的 view 的高度与 shape 虚线的高度相同。因此不会显示,只需要将 view 中的 layout_height 设置的比 shape 虚线的高度大就可以。例如:将 layout_height=“1dp” 改为 layout_height=“1.5dp” 。
这时,Android Studio 的预览面板就出现了这条虚线。
image.png好,此时运行到真机当中,却发现在真机上显示的却是一条实线。
问题2:本该显示的虚线,为什么显示为实线?
解答:原因在于 Android 3.0 之后,系统默认关闭了硬件加速功能。所以你可以使用以下方法。
view.setLayerType(View.LAYER_TYPE_SOFTWARE, null);
在AndroidManifest文件中,在需要用到虚线的activity的添加属性
<activity android:hardwareAccelerated="false" />
更多方式请查看官网:https://developer.android.com/guide/topics/graphics/hardware-accel.html
网友评论