Task 3 : Create Navigation with Tab Fragment on Android App

by - April 02, 2016



The creation of slide navigation call “hamburger” feature for my upcoming Android project. Firstly, the home activity contains tab layout with fragment. Secondly, Gridview in a fragment needs to be created in tab1 somehow the image cannot be scrolled smoothly

The reason to using fragment is to merge multiple fragments in a single activity, build a multi-pane UI, and reuse a fragment in multiple activities

To improve the loading speed of images scrolling, I were suggested to use holder and Picasso to load image faster as it allows hassle-free image loading in my application.

ListView itself has its own scrolling functionality and the main thing is Scrollview can host only one direct child. The result I have ListView in ScrollView does not display all items. In order to solve this issue, ListView was inserted into Linear layout

You May Also Like

0 comments