Pages

Monday, March 31, 2014

Back to Home Screen directly using ACTION MAIN with category CATEGORY HOME

If you want to go to Home Screen directly, using the code: Intent intent = new Intent(Intent.ACTION_MAIN); intent.addCategory(Intent.CATEGORY_HOME);...
Read More..

How to create Auto Complete text in android

just drop auto-complete textview from widget to your layout or copy below code: <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"   ...
Read More..

Sunday, March 30, 2014

Custom Expandable List In Android

This example shows how to create custom expandable list in android.Algorithm:1.)  Create a new project by File-> New -> Android Project name...
Read More..