我试图在我的视图中显示虚线“---”。我在stackoverflow上搜索了很多例子,并使用类似的drawable代码并调用我的视图。在我的IDE上显示虚线,但当我在我的设备上运行它时,它显示平面直线。在这方面请建议我为什么会这样。
My Drawable dotted.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="line">
<stroke
android:dashGap="3dp"
android:dashWidth="2dp"
android:width="1dp"
android:color="@color/black" />
</shape>
我的观点我称之为。
<View
android:layout_width="fill_parent"
android:layout_height="10dp"
android:background="@drawable/dotted_line"
android:layout_marginTop="5dp"/>
答案 0 :(得分:1)
如果查看无法正常工作,请尝试使用 ImageView 正常工作
<ImageView
android:layout_width="match_parent"
android:layout_height="10dp"
android:src="@drawable/dotted_line"
android:layout_marginTop="5dp"
android:layerType="software" />