私はここで指定された答えをいくつか試しましたが、How do I make a dotted/dashed line in Android?xmlを使って太い破線を描くにはどうすればいいですか?
ですが、線はすべて細いです。
私に必要なものは、10倍の厚さのものです。正解から
コード結果を読んでくれてありがとう:
activity_main.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.tester.MainActivity">
<ImageView
android:layout_width="match_parent"
android:layout_height="20dp"
android:src="@drawable/dotted"
android:layerType="software"/>
</RelativeLayout>
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="10px"
android:dashWidth="10px"
android:width="10dp"
android:color="@android:color/black"
/>
</shape>
このような愚かな質問! – Piyush
@Piyush、 '愚かな'部分について詳述するためのケア? –