1

重複の可能性:
ドローアブルファイルを作成してセパレータを作成する

次のコードを使用して、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>

これを修正するにはどうすればよいですか?

4

1 に答える 1

2

ドローアブルに複数の図形を使用する<layer-list> </layer-list>代わりに<shape/>を使用して、コードを次のように変更します。

<layer-list 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>

</layer-list>
于 2012-11-21T06:30:55.843 に答える