본문 바로가기
Android

ExpandableListView 자동으로 열어보여주기

by Leo 리오 2011. 5. 26.
반응형




ExpandableListView elv = (ExpandableListView)findViewById(R.id.elvMarks);
MyexpandableListAdapter ad = new MyexpandableListAdapter();
elv.setAdapter(ad);
for(int i=0;i<ad.getGroupCount();i++)
elv.expandGroup(i);

public boolean expandGroup (int groupPos)

  • True if the group was expanded, false otherwise (if the group was already expanded, this will return false) 
  •  
    반응형

    'Android' 카테고리의 다른 글

    Class, Object String form(Serializable)으로 save 하기  (0) 2011.06.10
    EditText Attributes  (0) 2011.06.10
    안드로이드 예제들  (0) 2011.05.04
    List View - UI thread 에러  (5) 2011.04.21
    achartengine에서 TimeBarChart 만들기  (5) 2011.01.08

    댓글