在listview中插入单个视图使listItem无法点击

时间:2012-08-31 12:21:25

标签: java android

我在listItemClick上的列表项内部扩展视图。列表项包含一个复选框。单击复选框时,包含两个/三个编辑文本字段和按钮的线性布局会膨胀到该列表视图(由游标适配器的getView方法完成,动态创建膨胀视图)。

列表视图在项目点击监听器上注册。布局膨胀后,不会为特定项调用onItemClick侦听器。帮帮我

我的getView代码

TextView text1  = (TextView) view.findViewById (R.id.text);
        text1.setText("text");

        CheckBox cb = (CheckBox)view.findViewById(R.id.checkBoxList) ;
        cb.setTag(tag);
        cb.setChecked(false);

        if ( chekedIdVector.contains(cursor.getString(cursor.getColumnIndex(ID) )))
        {
            cb.setChecked(true);
        }

        if( !idVector.isEmpty () )
        {
            LinearLayout ll =(LinearLayout)view.findViewById(R.id.layoutinCell);

            if ( ((String)idVector.lastElement()).equals(cursor.getString(cursor.getColumnIndex(_ID) )) )
            {

                if (ll.getChildCount() == 0 )
                {
                    ll.removeAllViews() ;
                    ll.addView(dynamicallyCreatedView); // view dynamically created with 2/3 textviews and buttons
                }

                ll.setVisibility(View.VISIBLE); 
                view.requestFocus() ;
            }

            else
            {
                ll.removeAllViews() ;
            }
        }

        return view  ;

Ps:我尝试过焦点更改的侦听器,并将复选框设置为无法在xml中调焦

1 个答案:

答案 0 :(得分:0)

如果所有其他方法都失败了,请考虑使用ExpandableListView(http://developer.android.com/reference/android/widget/ExpandableListView.html)或从头开始使用android:visibility =" GONE"然后将其设置为" VISIBLE"而不是给他们充气。