私はアンドロイド Java Eclipse でアプリケーションを開発しており、2 つのリスト ビューが並んでいて、それぞれに境界線を追加したいと考えていますlist-view
。どうすればできますか?私を助けてください...
質問する
4761 次
2 に答える
5
リストビューごとに背景の境界線を設定するために shape を使用できます。以下は、作成してリストビューの背景として設定できる shape.xml ファイルのサンプルです。
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
<solid android:color="#f3f3f3"/>
<stroke android:width="1dp" android:color="#bfbfbf"/>
<padding android:left="0dp" android:top="0dp"
android:right="0dp" android:bottom="0dp" />
</shape>
リストビューに角を丸くする必要がある場合は、使用できます
<corners android:radius="8dp" />
以下のようにxmlファイルを介して背景を設定することもできます::
android:background="@drawable/shape"
以下のコードを介して:::
listview_instance.setBackgroundResource(R.drawable.shape);
また、プロジェクトの res/drawable フォルダーに shape.xml ファイルが含まれていることを確認してください。
于 2012-04-15T05:23:29.220 に答える
1
一度これを試して、2つのリストビューの間にセパレータを配置してください
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="schemas.android.com/apk/res/android"
xmlns:android1="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android1:layout_width="wrap_content"
android:layout_height="fill_parent"
android1:layout_height="wrap_content"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="fill_parent"
android:layout_height="433dp"
android1:layout_height="wrap_content"
android:layout_marginLeft="20dp"
android:layout_marginTop="30dp" >
<ListView
android:id="@+id/listView1"
android:layout_width="229dp"
android:layout_height="wrap_content"
android:layout_marginRight="34dp"
android:layout_weight="0.37" >
</ListView>
<TextView android:id="@+id/tv"
android:layout_width="1dp"
android:background="#FF0000"
android:layout_height="wrap_content"/>
<ListView
android:id="@+id/listView2"
android:layout_width="667dp"
android:layout_height="wrap_content"
android:layout_weight="0.12" >
</ListView>
</LinearLayout>
</LinearLayout>
于 2012-04-15T12:35:27.397 に答える