LoginSignup
2
2

More than 5 years have passed since last update.

ExpandableListViewにチェックボックスを埋め込んだ場合のonChildClick

Posted at

開閉可能なリストのアイテムにチェックボックスを埋め込んで、リストタッチ時にイベントを発生させようとして、

ExpandableListView v;
v.setOnChildClickListener(new OnChildClickListener(){
            @Override
            public boolean onChildClick( // 省略

のようなことをやろうとしても、イベントが拾えない。
どうもチェックボックスにフォーカスを当てる動作が優先されているようで、以下の設定をすればonChildClickイベントが発生するようになる。

    <CheckBox
        ...
        android:focusable="false"
        android:focusableInTouchMode="false"
        ...
    />
2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2