Skip to content Skip to sidebar Skip to footer

App Crashes Giving Index Out Of Bounds In Logcat While Adding Footer To Listview

I have a listview which loads more listitems when it reaches 20rh listitem using onscroll listener I want to add a footer saying loading more while more listitems are getting loade

Solution 1:

Create footer_view.xml and than just try it onCreate

View footerView =  ((LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE)).inflate(R.layout.footer_layout, null, false);
list.addFooterView(footerView);

Post a Comment for "App Crashes Giving Index Out Of Bounds In Logcat While Adding Footer To Listview"