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

Drawing using Canvas in Android

In This tutorials We learn that how you can draw Images using canvas technology. canvas used for drawing geometrical shapes. ...
Read more

Set Wallpaper For Android

In this tutorials We study that How to Set Wallpaper for Android Screen. Now Let the fun began…………………. Please add ...
Read more

Android Live Wallpaper

Android extend new excitement to new API. Android API 2.1 and onward support Live wallpapers feather. Live Wallpaper consists some ...
Read more

How Intent Work

Intent is used for communicating among different Activity of Application. 1: send data from one Activity to another. 2: Broadcast ...
Read more

SGPA Calculator for Android

package com.example.intent; import android.R.id; import android.app.Activity; import android.os.Bundle; import android.text.InputType; import android.view.Menu; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; import android.widget.EditText; ...
Read more

Layout and ImageView Dynamically in Andorid Project

Layout and control are add from xml file and java file. In most application you can add controls dynamically . ...
Read more

How to Change phone Profile

//Construct object of Audio Manager AudioManager audMangr; audMangr= (AudioManager) getBaseContext().getSystemService(Context.AUDIO_SERVICE); //For Normal mode audMangr.setRingerMode(AudioManager.RINGER_MODE_NORMAL); //For Silent mode audMangr.setRingerMode(AudioManager.RINGER_MODE_SILENT); //For Vibrate ...
Read more

Android Wireless

Mobile Wireless programming utilized Bluetooth, WiFi and other wireless device make comfortable for user .
Read more