素晴らしい学習体験でしたが、expandablelistview アダプターの使用はほぼ完了しました。グループと子ビューにチェックボックスがあるため、直感的に、グループビューチェックボックスのアクションによって子ビューのすべてのチェックを無効/有効にすることができます。あとは、グループ ビューのチェックボックスを子ビューに対応させるだけです。しようとするとクラッシュします。
for(int i = 0; i < check_states.get(groupPosition).size(); i++) {
if (check_states.get(groupPosition).get(i) == false) {
Log.d ("Meat", "Child checkboxes are not all checked!!!");
}
}
配列リストの作成が完了する前にこれらのコマンドを呼び出すためだと確信しています->「check_states」は、チェックボックスのチェック状態を保持するために使用する配列リストの配列リストです。
したがって、私の質問は、コマンドを呼び出す前に、配列リストの作成が完了するのを待つ方法です。私ができることを調べましたが、これが価値があるものよりも少し複雑なようです. 別のスレッドを設定したり、このように貧弱なもののために 10 行のコードを割愛したりするよりも、ロングクリック メニューを設定したいと思います。
編集:logcatで更新
10-06 19:18:08.204: W/dalvikvm(540): threadid=1: thread exiting with uncaught exception (group=0x40015560)
10-06 19:18:08.224: E/AndroidRuntime(540): FATAL EXCEPTION: main
10-06 19:18:08.224: E/AndroidRuntime(540): java.lang.IndexOutOfBoundsException: Invalid index 0, size is 0
10-06 19:18:08.224: E/AndroidRuntime(540): at java.util.ArrayList.throwIndexOutOfBoundsException(ArrayList.java:257)
10-06 19:18:08.224: E/AndroidRuntime(540): at java.util.ArrayList.get(ArrayList.java:311)
10-06 19:18:08.224: E/AndroidRuntime(540): at com.mangodeveloper.mcathomie.McatTopicsExpandableListAdapter.getGroupView(McatTopicsExpandableListAdapter.java:166)
10-06 19:18:08.224: E/AndroidRuntime(540): at android.widget.ExpandableListConnector.getView(ExpandableListConnector.java:445)
10-06 19:18:08.224: E/AndroidRuntime(540): at android.widget.AbsListView.obtainView(AbsListView.java:1430)
10-06 19:18:08.224: E/AndroidRuntime(540): at android.widget.ListView.makeAndAddView(ListView.java:1745)
10-06 19:18:08.224: E/AndroidRuntime(540): at android.widget.ListView.fillDown(ListView.java:670)
10-06 19:18:08.224: E/AndroidRuntime(540): at android.widget.ListView.fillFromTop(ListView.java:727)
10-06 19:18:08.224: E/AndroidRuntime(540): at android.widget.ListView.layoutChildren(ListView.java:1598)
10-06 19:18:08.224: E/AndroidRuntime(540): at android.widget.AbsListView.onLayout(AbsListView.java:1260)
10-06 19:18:08.224: E/AndroidRuntime(540): at android.view.View.layout(View.java:7175)
10-06 19:18:08.224: E/AndroidRuntime(540): at android.widget.RelativeLayout.onLayout(RelativeLayout.java:912)
10-06 19:18:08.224: E/AndroidRuntime(540): at android.view.View.layout(View.java:7175)
10-06 19:18:08.224: E/AndroidRuntime(540): at android.widget.FrameLayout.onLayout(FrameLayout.java:338)
10-06 19:18:08.224: E/AndroidRuntime(540): at android.view.View.layout(View.java:7175)
10-06 19:18:08.224: E/AndroidRuntime(540): at android.widget.RelativeLayout.onLayout(RelativeLayout.java:912)
10-06 19:18:08.224: E/AndroidRuntime(540): at android.view.View.layout(View.java:7175)
10-06 19:18:08.224: E/AndroidRuntime(540): at android.widget.FrameLayout.onLayout(FrameLayout.java:338)
10-06 19:18:08.224: E/AndroidRuntime(540): at android.view.View.layout(View.java:7175)
10-06 19:18:08.224: E/AndroidRuntime(540): at android.widget.FrameLayout.onLayout(FrameLayout.java:338)
10-06 19:18:08.224: E/AndroidRuntime(540): at android.view.View.layout(View.java:7175)
10-06 19:18:08.224: E/AndroidRuntime(540): at android.view.ViewRoot.performTraversals(ViewRoot.java:1140)
10-06 19:18:08.224: E/AndroidRuntime(540): at android.view.ViewRoot.handleMessage(ViewRoot.java:1859)
10-06 19:18:08.224: E/AndroidRuntime(540): at android.os.Handler.dispatchMessage(Handler.java:99)
10-06 19:18:08.224: E/AndroidRuntime(540): at android.os.Looper.loop(Looper.java:123)
10-06 19:18:08.224: E/AndroidRuntime(540): at android.app.ActivityThread.main(ActivityThread.java:3683)
10-06 19:18:08.224: E/AndroidRuntime(540): at java.lang.reflect.Method.invokeNative(Native Method)
10-06 19:18:08.224: E/AndroidRuntime(540): at java.lang.reflect.Method.invoke(Method.java:507)
10-06 19:18:08.224: E/AndroidRuntime(540): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:839)
10-06 19:18:08.224: E/AndroidRuntime(540): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597)
10-06 19:18:08.224: E/AndroidRuntime(540): at dalvik.system.NativeStart.main(Native Method)
もう一度編集します。これは、拡張可能なアダプターの関連部分についてです
public class McatTopicsExpandableListAdapter extends BaseExpandableListAdapter {
...
public View getChildView(final int groupPosition, final int childPosition, boolean isLastChild,
View convertView, ViewGroup parent) {
final ViewHolder holder;
if (convertView == null) {
LayoutInflater viewInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
convertView = viewInflater.inflate(R.layout.mtopics_childview, parent, false);
holder = new ViewHolder();
holder.text = (TextView)convertView.findViewById(R.id.mtopicschildtv);
holder.checkbox = (CheckBox)convertView.findViewById(R.id.mtopicchildchkbox);
convertView.setTag(holder);
} else {
holder = (ViewHolder) convertView.getTag();
}
holder.text.setText(getChild(groupPosition, childPosition).toString());
for(int i = 0; i < children.length; i++) {
ArrayList<Boolean> tmp = new ArrayList<Boolean>(children[i].length);
for(int j = 0; j < children[i].length; j++) {
tmp.add(true);
}
check_states.add(tmp);
}
if (check_states.get(groupPosition).get(childPosition) == true) {
holder.checkbox.setChecked(true);
}else{ holder.checkbox.setChecked(false);
}
holder.checkbox.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
if (holder.checkbox.isChecked()) {
check_states.get(groupPosition).set(childPosition, true);
}else{ check_states.get(groupPosition).set(childPosition, false);
}
}
});
return convertView;
}
public View getGroupView(final int groupPosition, boolean isExpanded, View convertView,
ViewGroup parent) {
ViewHolder holder;
if (convertView == null) {
LayoutInflater viewInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
convertView = viewInflater.inflate(R.layout.mtopics_groupview, parent, false);
holder = new ViewHolder();
holder.text = (TextView)convertView.findViewById(R.id.mtopicsgrouptv);
holder.checkbox = (CheckBox)convertView.findViewById(R.id.cb_group);
convertView.setTag(holder);
} else {
holder = (ViewHolder) convertView.getTag();
}
holder.text.setText(getGroup(groupPosition).toString());
for(int i = 0; i < check_states.get(groupPosition).size(); i++) {
if (check_states.get(groupPosition).get(i) == false) {
Log.d ("Meat", "Child checkboxes are not all checked!!!");
}
}
holder.checkbox.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
if (isChecked) {
for(int i = 0; i < check_states.get(groupPosition).size(); i++) {
check_states.get(groupPosition).set(i, true);
}
} else if (!isChecked)
for(int i = 0; i < check_states.get(groupPosition).size(); i++) {
check_states.get(groupPosition).set(i, false);
}
notifyDataSetChanged();
}
});
return convertView;
}
// additional components
ArrayList<ArrayList<Boolean>> check_states = new ArrayList<ArrayList<Boolean>>(children.length);
static class ViewHolder {
TextView text;
CheckBox checkbox;
}
}