What programs to learn in android as beginner ?
Dashboard project - download screenshot1 screenshort2
Note : All these samples are implemented in Gingerbread 2.3.3 version (API 10)
- Writing Hello world Program download screenshot
- Creating simple form download screenshot
- Switching between screens ( Activities) download
- Creating Menus download
- Option menu
- Context menu
- Creating Notification
- Toast messages download screenshot1 screenshot2
- Status bar messages
- Creating Dialogs
- Alert Dialog
- Progress Dialog
- Date Picker Dialog download screenshot
- Time Picker Dialog download screenshot
- Binding static Data to the Views
- List View download screenshot
- Spinner( Drop down ) download screenshot
- Grid View download
- Binding SQLite( Database ) Data to the Views
- Contacts look-up using AutoCompleteTextview ( Content provider ) download
- Integration with Maps download
- Creating service
- Service
- Bound Service
- Webview download
Dashboard project - download screenshot1 screenshort2
Note : All these samples are implemented in Gingerbread 2.3.3 version (API 10)
Good Evening Sir,
ReplyDeleteThis is Vishnu form Ellenki College. You wanted me to leave a mail to guide me work on EXIT FORM THE APP area in Android Application Development.
Can you please help me Sir..
Hi Vishu,
ReplyDeleteAndroid applications Contains Activities (Screens). If you can close all Activities which are running, nothing exiting application.
We can do this by clearing all activities using FLAG_ACTIVITY_CLEAR_TOP flag.
Call the Exit activity with FLAG_ACTIVITY_CLEAR_TOP flag and finish it onCreate.
Intent intent = new Intent(this, ExitActivity.class);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(intent);
finish();
i will try to implement it Sir, thank you for that..!! :)
Deleteand i will get back if it doesn't work.
Good Evening Sir,
ReplyDeleteVishnu again. I want to fetch the values from an ArrayAdapter to a string sir, i had been working on it past 2 days, and failed. I am successful in passing the strings into ArrayAdapter, but unable to reverse the process. Kindly provide me a solution sir.
Regards
M Vishnu Chaitanya