0

画像、テキストビュー、チェックボックスを含む各アイテムのリストビューがあります。アイテム内をクリックすると、チェックボックスが強調表示されるようにしようとしています。この応答で述べたように、チェックボックスの focusable 属性を false に設定しましたが、チェックボックスをクリックして状態を変更することしかできません。さらに興味深いのは、チェックボックスをクリックすると、次の 10 番目の項目もすべて強調表示されることです。助言がありますか?

これがアイテムのxmlです。

<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
    <ImageView
        android:id="@+id/image"
        android:layout_width="50dip"
        android:layout_height="50dip" 
        android:src="@drawable/stub"   
        android:scaleType="centerCrop"/>
    <TextView
        android:id="@+id/text"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1" 
        android:layout_gravity="left|center_vertical" 
        android:textSize="20dip" 
        android:layout_marginLeft="10dip"/>

    <CheckBox
        android:id="@+id/checkBox1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:focusable="false"/>

</LinearLayout>

メイン xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ListView
    android:id="@+id/list"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" 
    android:layout_weight="1"/>
<Button
    android:id="@+id/button1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" 
    android:text="Clear Cache"/>
</LinearLayout>
4

3 に答える 3

0

main.xml で

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

    <RelativeLayout
        android:layout_width="450dp" 
        android:layout_height="25dp"
        android:layout_marginLeft="7dp"
        android:layout_marginTop="3dp">

     <ListView
android:id="@+id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent" 
android:layout_weight="1"/>
     </RelativeLayout>



     <RelativeLayout
        android:layout_width="450dp" 
        android:layout_height="25dp"
        android:layout_marginLeft="7dp"
        android:layout_marginTop="3dp">

     <Button
android:id="@+id/button1"
android:layout_width="fill_parent"
android:layout_height="wrap_content" 
android:text="Clear Cache"/>
     </RelativeLayout>

</LinearLayout>

これがお役に立てば幸いです...

于 2012-05-06T07:37:06.910 に答える
0

リストに入力する過程で、 を設定しOnItemClickListener、チェックボックスを に変更できますchecked。このようなことを試してください:

list.setOnItemClickListener(new OnItemClickListener() {

            @Override
            public void onItemClick(AdapterView<?> parent, View view,
                    int position, long id) {
                ListItem item = (ListItem) adapter.getItem(position);
                if(item.checkbox.isChecked()) 
                      item.checkbox.setChecked(false);
                else
                      item.checkbox.setChecked(true);
            }
 });
于 2012-05-06T07:40:16.097 に答える