android - how to scroll an expandable list view till its end? -
i made class extending expandablelistview . following code : class customexpandablelistview extends expandablelistview { public customexpandablelistview(context context) { super(context); } protected void onmeasure(int widthmeasurespec, int heightmeasurespec) { /* * adjust height */ heightmeasurespec = measurespec.makemeasurespec( 700, measurespec.at_most); super.onmeasure(widthmeasurespec, heightmeasurespec); } } and used as. expandablelistview list = new customexpandablelistview(kaasmain.this); adapter adapter = new adapter(kaasmain.this, objectslvl1); list.setadapter(adapter); parent.addview(list); // list.setgroupindicator(); list.settranscriptmode(expandablelistview.transcript_mode_always_scroll); list.setindicatorbounds(0, 0); list.setchildin...