How to read all contacts of android phone

In this tutorial we simply display the name of all Contacts which are saved at our phone . package com.example.contactslist; ...
Read more
Content Provider to load all images in Set as wallpaper in Android

res/layout/main.xml sec/java/mainactivity.java ….package com.example.allimagespath; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; import java.io.InputStream; import java.util.ArrayList; import android.net.Uri; import android.os.Bundle; ...
Read more
Customized Query to access Contents of android phone

Cursor cursor = managedQuery(Uri, null, null, null, null); First parameter are used for what you want to access there are ...
Read more
Content Provider in Android

An android we used File , Data Base for Stored data permanently. These file and Database are accessible only to ...
Read more
Play Audio in Android

There are used Media Player class for playing audio file in android Programmatically . You can play audio file of ...
Read more
How to add and remove data from Android Emulator Sd Card

First of all open Eclipse and go to DDMS menu . After that select File Explorer and open Sd card ...
Read more
How to install APK on Android Phone/Emulator from PC

Some time we want to install any APK on Emulator or Android phone directly form PC . For doing this ...
Read more
Android Content Provider

Content Provider used for Shared data of Android Mobile . Which are easily accessible from every Application of Android. Following ...
Read more
How to Develop Android Widget

Android Widget Widget are application which are run on home screen for quick access and easily inform you from current ...
Read more
Simple List Activity

Java Class of src folder where : import android.os.Bundle; import android.app.Activity; import android.app.ListActivity; import android.content.ClipData.Item; import android.view.Menu; import android.widget.ArrayAdapter; public ...
Read more