其他分享
首页 > 其他分享> > Android ShapeDrawable 虚线 的显示问题

Android ShapeDrawable 虚线 的显示问题

作者:互联网

<shape xmlns:android="http://schemas.android.com/apk/res/android"
       android:shape="line">
    <stroke
        android:width="1dp"
        android:color="#979797"
        android:dashGap="4dp"
        android:dashWidth="6dp"/>
</shape>
 <View
      android:layout_width="match_parent"
      android:layout_height="1dp"
      android:layout_marginTop="10dp"
      android:background="@drawable/shape_dash_line_green" />

Android的 用shap 绘制虚线 就是这么写的,看起来没啥问题,但是可能会导致以下问题:

**

问题一:虚线不显示

**
解决方法:
虚线ShapeDrawable作为控件background的时候,控件的layout_height一定要大于shape中stroke标签的width属性,才能显示

问题二:显示的是实线

这时ShapeDrawable虽然显示出来了,可显示的并不是虚线,而是实线
怎么回事,网上搜了一下,说是必须要关闭硬件加速才能展示虚线。

在xml中添加 android:layerType=“software”

<View
    android:layout_width="match_parent"
    android:layout_height="1dp"
    android:layout_marginTop="10dp"
    android:layerType="software"
    android:background="@drawable/shape_dashed_line"/>

或者使用代码实现

view.setLayerType(View.LAYER_TYPE_SOFTWARE,null);

结论:
在android中设置虚线需要

  1. 用shape画虚线使用时,控件的layout_height一定要大于shape中stroke标签的width属性
  2. 将该控件设置关闭硬件加速

标签:控件,显示,ShapeDrawable,height,shape,虚线,Android
来源: https://blog.csdn.net/qq_32865887/article/details/89477040