7

連絡先の同期を使用してアプリを作成しました。以下の連絡先を写真、名前、番号とともに記載します。これらすべてをカスタムListViewに正常にリストしましたが、 ListViewをクリックできません。ロックされているようで、クリックできません。

しかし、私は別の活動に同じ手順を作りました。カスタムListViewを使用していますが、このビューをクリックすると正常に動作します。

何が問題ですか?ここに私のサンプルコーディングがあります:

    ListView settingsList = (ListView) findViewById(R.id.manage_track_listView);
    ArrayList<ContactList> MySettingsList = new ArrayList<ContactList>();

    ContactList setting1 = new ContactList("contact name 1", "Number 1", null);
    ContactList setting2 = new ContactList("contact name 2", "Number 2", null);
    ContactList setting3 = new ContactList("contact name 3", "Number 3", null);

    MySettingsList.add(setting1);
    MySettingsList.add(setting2);
    MySettingsList.add(setting3);

    ContactList list[] = new ContactList[MySettingsList.size()];

    for(int i=0;i<MySettingsList.size();i++) {

        ContactList mySettings = MySettingsList.get(i);
        list[i] = new ContactList(mySettings.getName(), mySettings.getNumber(), mySettings.getImageIcon());
    }

    ContactListAdapter adapter = new ContactListAdapter(this, R.layout.manage_track_list_custom_view, list);
    settingsList.setAdapter(adapter);
    System.out.println("before listener");
    settingsList.setOnItemClickListener(new OnItemClickListener() {

        @Override


        public void onItemClick(AdapterView<?> parent, View view, int position,
                long id) {
            // TODO Auto-generated method stub

            System.out.println("Clicked " + position);
        }
    });
    System.out.println("after listener");

ここで、ContactList は、imageBlob の連絡先名、連絡先番号、byte[] を持つクラスです。画像が null の場合、デフォルトの ic_launcher を連絡先画像として設定します。アダプタ クラスは次のとおりです。

public class ContactListAdapter extends ArrayAdapter<ContactList> {

    Context context;
    int layoutResourceId;
    ContactList objects[] = null;

    View row;

    public ContactListAdapter(Context context, int layoutResourceId, ContactList[] objects) {
        super(context, layoutResourceId, objects);
        // TODO Auto-generated constructor stub

        this.context = context;
        this.layoutResourceId = layoutResourceId;
        this.objects = objects; 
        System.out.println(objects[1].getName());
        System.out.println(objects[1].getNumber());
        System.out.println(objects[1].getImageIcon());
    }

    @Override
    public View getView(final int position, View convertView, ViewGroup parent) {
        // TODO Auto-generated method stub

        row = convertView;
        final ContactListHolder holder;

        if ( row == null ) {

            LayoutInflater inflater = ((Activity)context).getLayoutInflater();
            row = inflater.inflate(layoutResourceId, parent, false);

            holder = new ContactListHolder();
            holder.image    = (ImageView) row.findViewById(R.id.contactImage);
            holder.name     = (TextView) row.findViewById(R.id.contactName);
            holder.number   = (TextView) row.findViewById(R.id.contactNumber);
            holder.check    = (CheckBox) row.findViewById(R.id.selectedContact);

            row.setTag(holder);

        } else {

            holder = (ContactListHolder)row.getTag();
        }

        ContactList contact = objects[position];
        if(contact.imageIcon != null) {

            Bitmap imgBitmap = BitmapFactory.decodeByteArray(contact.imageIcon, 0, contact.imageIcon.length);
            holder.image.setImageBitmap(imgBitmap);
        } else {

            holder.image.setImageResource(R.drawable.ic_launcher);
        }

        holder.name.setText(contact.name);
        holder.number.setText(contact.number);
        holder.check.setChecked(objects[position].isSelected());    

        return row;

    }

    static class ContactListHolder {

        ImageView image;
        TextView name;
        TextView number;
        CheckBox check;
    }
}

100 を超える連絡先があるため、3 つのオブジェクトのみを追加しました。この連絡先リストでは、連絡先の画像、名前、番号を正常に受け取りました。

ListViewがクリックできない問題は何ですか? あなたの誰かが私を案内してくれることを願っています。前もって感謝します。


ありがとうございます。android:focusable="false"すべての子ビューを追加するだけで結果が得られました。あなたの指導に感謝します。

4

6 に答える 6

9

ネストされたビューでは、子ビューが常に最初にすべてのタッチ イベントを取得します。親ビュー (この場合は listView 行) でタッチ イベントを取得する場合は、子イベントで false を返すかandroid:clickable="false"、マニフェストに設定する必要があります。

于 2012-06-26T08:49:19.010 に答える
8

追加

 android:focusable="false"  

 android:clickable="false"

imageview、textview、checkbox などの各子ビューの行レイアウトは、manage_track_list_custom_view.xmlで意味します

于 2012-06-26T09:14:52.757 に答える
3

たとえば、クリック可能なものをすべて設定する必要があると思います。チェックボックス、ボタンなどはフォーカス可能ではありません (アダプター クラス内)。

        holder.yourButton.setFocusable(false);
        holder.yourButton.setFocusableInTouchMode(false);

        holder.yourCheckbox.setFocusable(false);
        holder.yourCheckbox.setFocusableInTouchMode(false);
于 2012-06-26T09:17:50.957 に答える
1

これを試して:

listView を追加するときは、

setDescendantFocusability(FOCUS_BLOCK_DESCENDANTS);

詳細については、こちらをご覧ください。

于 2012-06-26T09:19:37.940 に答える
0

ContactListAdapter クラスの View 行に onclick リスナーを設定できます。

    holder.check.setChecked(objects[position].isSelected());    
       row.setOnclickListner(new Onclicklistner(){
          // Your code here
       });
    return row;
于 2012-06-26T09:18:38.227 に答える