重複の可能性:
ドローアブルファイルを作成してセパレータを作成する
次のコードを使用して、2 つのフィールド間に仕切りを作成しています。
<View
android:layout_width="1dp"
android:layout_height="wrap_content"
android:background="#000000" />
<View
android:layout_width="1dp"
android:layout_height="wrap_content"
android:background="#FFFFFF" />
コードは完全に機能しますが、次のようなことを達成したいです:
<View
android:layout_width="2dp"
android:layout_height="wrap_content"
android:background="@drawable/divider" />
そうすることで、2 つのビューを 1 つにまとめることができます。しかし、divider.xml ファイルにどのようなコードを記述すればよいかわかりません。次のことを試しましたが、うまくいきませんでした:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<item >
<shape android:shape="rectangle" >
<stroke android:color="#000000"/>
<size android:width="1dp" />
</shape>
</item>
<item >
<shape android:shape="rectangle" >
<stroke android:color="#FFFFFF"/>
<size android:width="1dp" />
</shape>
</item>
これを修正するにはどうすればよいですか?