Android ViewPager Archives - Page 2 of 2 - Androhub

Endless Scrolling

Load More Items On Scroll Android (Endless Scrolling)

We pretty much all know the nice technique apps like Gmail, Facebook, etc. use to dynamically load more items to the ListView then you scroll to the bottom. In this article i am going to show you the same thing over ListView and RecyclerView. If you are unaware of ListView and RecyclerView that how to use both views

Read More
Image Slider

Android Image Slider Using ViewPager

You have seen many Android apps with sliding images with circle page indicator at top. Today we are going to learn the same thing for our app. Before proceeding, we need a superb library called ViewPagerIndicator-Library that we can get from Github created by JakeWhartom. Just download it and import the library into your project.

Read More
SwipeRefresh Layout

Android SwipeRefresh Layout

You might have noticed that lot of android apps like Twitter, Google+ provides an option to swipe / pull down to refresh it’s content. Whenever user swipes down from top, a loader will be shown and will disappear once the new content is loaded. In this tutorial we are going to learn how to provide

Read More

Android RecyclerView

What is RecyclerView? Google’s upcoming operating system named Android L looks very promising. It is highly focused on rich user experience and what they called it as material design. In this example we will take a look at the new UI widget called RecyclerView. RecyclerView is more advanced and flexible and efficient version of ListView. RecyclerView

Read More
Tabs using ViewPager

Android Tab with Swipeable Views using ViewPager

This article shows you how to create tab layout using fragments and viewpager. Also you can swipe between tab view as it is the functionality of viewpager which is not possible when using TabHost. Before getting into this tutorial it is suggested to have knowledge on Fragments and ViewPager as these two are main concepts

Read More