ExpandableListView 의 Group 클릭 처리
ExapandableListView.setOnGroupClickListener(new ExpandableListView.OnGroupClickListener() {
@Override
public boolean onGroupClick(ExpandableListView parent, View v, int groupPosition, long id) {
return parent.isGroupExpanded(groupPosition);
}
});
클릭할때마다 해당 Group 을 확장한다.
반응형
'Dev > Android' 카테고리의 다른 글
Thread 중복 사용은 성능 나쁜 디바이스한테 안돼! (0) | 2017.11.23 |
---|---|
Android Notification 설정 - Head Up (0) | 2017.11.15 |
Android Parcelable 설명 (0) | 2017.11.12 |
AltBeacon 라이브러리 사용 (0) | 2017.11.07 |
Bluetooth 연결과 Characteristic 전송 속도 (0) | 2017.11.06 |