Thursday 26 May 2016

SHOWING IMAGES IN VIEW PAGER

how to S show images list by exposing flicker api in a view pager.

Screen slides are transitions between one entire screen to another and are common with UIs like setup wizards or slideshows. This lesson shows you how to do screen slides with a ViewPager provided by the support library. ViewPagers can animate screen slides automatically. Here's what a screen slide looks like that transitions from one screen of content to the next:

In this tutorial I am showing a list of images in a custom pager adapter.For full code we can comment below.I am sharing the main activity code with comments for helping you out at each step.

Below is the code snippet for your main activity .

Saturday 14 May 2016

List of contacts through cursor loader framework

how to get contact list through loader framework in android

Loaders work on a separate thread so your app carries on working while the Loader gets the data. Loaders monitor the data source for any changes and updates the data it gives you. Loaders take care of restoring the cursor after a configuration change without having to do a re-query

Here is the code snippet for the same.You can download the source code from github

How to get list of installed apps in android?

Get list of user installed apps in android

In this tutorial we will learn how to show list of installed application in your android phone.

Here is the code snippet for the same.You can download the source code from github