0

listViewのあるレイアウトがあります

 <?xml version="1.0" encoding="utf-8"?>
 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
     android:id="@+id/testMain"
     android:layout_width="fill_parent"         
     android:layout_height="fill_parent" >



    <ListView
         android:id="@+id/notesListView"
        android:layout_width="480dp"
        android:layout_height="wrap_content"
        android:background="#000"
        android:divider="#FFF"
        android:dividerHeight="5dp"         
        android:fadingEdge="none"
        android:overScrollFooter="#000"
        android:layout_marginBottom="15dp"         
         />              
 </RelativeLayout>

ListView_Adapterを使用して、リストにアイテムを動的に追加します。リストのすべての行の右隅にボタンを追加することは可能ですか?

4

2 に答える 2

1

はい、カスタムリストビューを使用する必要があります。カスタムリストビューでは、レイアウトxmlファイルからリストアイテムを動的に追加する必要があります。

例 :

<?xml version="1.0" encoding="utf-8"?>
 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
     android:id="@+id/testMain"
     android:layout_width="fill_parent"         
     android:layout_height="fill_parent" >

    <Button
         android:id="@+id/notesListView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
         android:layout_alignParentRight="true"

         />              
 </RelativeLayout>
于 2012-10-25T06:59:02.693 に答える
0

listitemxmlを

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="8dp">

<TextView
 android:id="@+id/title"
 android:textColor="#FFF"
 android:layout_width="120dp"
 android:layout_height="wrap_content"/>

 <Button
 android:id="@+id/Btn01"
  android:textColor="#000"
  android:layout_weight="0.20"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="Button1"/>

</LinearLayout>

リストビューでこのボタンを確認してください

于 2012-10-25T06:56:03.403 に答える