Android-Tutorials-Hub / expandable-list-view-tutorial

Android Expandable List View Tutorial :- http://www.androidtutorialshub.com/android-login-and-register-with-sqlite-database-tutorial/
8 stars 6 forks source link

I want to expand all groups initially with focus on first item ? #1

Closed aZyreTech closed 4 years ago

aZyreTech commented 4 years ago

I am trying to expand all groups initially and i am getting that. But the problem is when my all groups are expanded focus goes to last item. I want to expand all groups with first item focusable. How to do that ?

lalit-vasan commented 4 years ago

Hi,

Use the smoothScrollToPosition(pos) function to scroll to the position you want to scroll. Like expandableListView.smoothScrollToPosition(<position>);

In your case expandableListView.smoothScrollToPosition(0);

Hope this may help you, Feel free to ask

aZyreTech commented 4 years ago

thanks