Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
コードで expandablelistview から子を選択するにはどうすればよいですか?
私は別の活動からこの子のIDを持っています。このIDは別の活動からのカーソルから来ています。
selectChild 関数を使用できます。
http://www.androidjavadoc.com/m5-rc15/android/app/ExpandableListActivity.html#setSelectedChild(int,%20int,%20boolean)
例:
listView.setSelectedChild(1, 1, true);
View v = myExpandableListView.findViewById(id); v.setSelected(true);