形状虚线,破折号不起作用

Posted

技术标签:

【中文标题】形状虚线,破折号不起作用【英文标题】:Shape dashed line, dash doesn't work 【发布时间】:2016-12-29 11:36:39 【问题描述】:

我想使用shape 制作虚线。

这是我的 XML:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item>
        <shape android:shape="line">
            <stroke android:color="@color/grey_divider"
                android:
                android:dashWidth="5dip"
                android:dashGap="13dip"/>
        </shape>
    </item>
</selector>

在我的设备上,我看到: 但我需要这样的东西:

如何解决?

【问题讨论】:

【参考方案1】:

试试这个

在drawable中创建一个xml文件。(例如dashed_line.xml)

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="line">

    <stroke
       android:color="#C7B299"
       android:dashWidth="10px"
       android:dashGap="10px"
       android:/>
</shape>

现在在你的布局中使用这个 xml 文件。

android:background="@drawable/dashed_line"

【讨论】:

android:layerType="software" - 只有这一行对我有帮助,即使是我的 XML。请写为答案 嗨@Artem android:layerType="software" 给出虚线“硬件”用于平面线 用于停止硬件加速的软件。【参考方案2】:

添加这个drawable:dash_line.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="line">
    <stroke
        android:
        android:color="#ff0000"
        android:dashWidth="2dp"
        android:dashGap="4dp" />
</shape>

然后使用drawable作为背景:

<View
            android:layout_
            android:layout_
            android:layout_marginBottom="10dp"
            android:background="@drawable/dash_line"
            android:layerType="software" />

不要忘记低 sdk 设备的属性

android:layerType="software"

详情在这里:https://developer.android.com/guide/topics/graphics/hardware-accel

【讨论】:

以上是关于形状虚线,破折号不起作用的主要内容,如果未能解决你的问题,请参考以下文章

FFMPEG 生成的 MPEG Dash 输出不起作用

使用选择器作为颜色的形状不起作用

形状可绘制尺寸不起作用

选择器中的 Android 按钮形状不起作用

用于操作栏和通知的 Android 图标生成器不起作用(灰色形状)

PYODBC 到 Pandas - DataFrame 不起作用 - 传递值的形状是(x,y),索引暗示(w,z)