私の ExpandableListView では、各子行に CheckBox と TextView が含まれています。TextView をタップすると、すべてが完全に (ついに!) 動作します。ただし、チェックボックスをタップすると状態が変わりますが、onClick イベントは発生しません。エラーはありませんが、実際には何も起こりません。
テキストビューとチェックボックスの両方が同じ動作を呼び出すようにします (つまり、ユーザーが行のどこでもクリックできるようにする必要があり、同じ動作が得られます)。私は何を間違っていますか?ありがとうございました!
public class ExpandListAdapter extends BaseExpandableListAdapter {
public ExpandListAdapter(Context context, ArrayList<ExpandListGroup> groups) {
this.context = context;
this.groups = groups;
}
@Override
public View getChildView(int groupPosition, int childPosition, boolean isLastChild, View view, final ViewGroup parent) {
view = getCategoryChildView(groupPosition, childPosition, view);
view.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
//this works for the textview click but
//doesn't fire when the check box is clicked
System.err.println("child clicked");
}
});
return view;
}
private View getCategoryChildView(int groupPosition, int childPosition, View view) {
ClientFinderCategories child = (ClientFinderCategories) getChild(groupPosition, childPosition);
ViewHolder holder;
if (view == null) {
holder = new ViewHolder();
LayoutInflater inflater = (LayoutInflater) context.getSystemService(context.LAYOUT_INFLATER_SERVICE);
view = inflater.inflate(R.layout.expandlist_child_item_category, null);
holder.checkBox = (CheckBox) view.findViewById(R.id.check_box);
holder.textView = (TextView) view.findViewById(R.id.expand_list_item);
view.setTag(holder);
} else {
holder = (ViewHolder) view.getTag();
}
try {
holder.checkBox.setChecked(child.getIsSelected());
holder.textView.setText(child.getCategory());
} catch (Exception e) {}
return view;
}
}
レイアウトxml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="55dip"
android:descendantFocusability="blocksDescendants"
android:orientation="horizontal" >
<CheckBox
android:id="@+id/check_box"
android:layout_marginLeft="30dp"
android:focusable="false"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/expand_list_item"
android:focusable="false"
android:focusableInTouchMode="false"
android:clickable="false"
android:paddingLeft="10dp"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="@dimen/smart_finder_settings_font_size"
android:textColor="#FFFFFF" />
</LinearLayout>