Android Practical (Java)
1 Create "Hello World" application. That will display "Hello World" in the middle of the screen in the red color with white background. link
2 Create My_info application. That will display your name, qualification, contact num, email id and address with background color gray. All details must have different color. (using XML) link
3 Change color of above program using java code. link
4 Write a program to demostrate life cycle of activity in andorid. link
5 Create an application that designs a layout with a text box and button named submit. The user should enter the text in the text box. When the submit button is clicked than the text in the text box should be displyed in the toast. link
6 Create an android application named Arithmatic_ope which perform all basic arithmatic operation like addition, subtraction, multiplication and division. link
7 Create simple program which show the use of auto complete text view.
8 Create sample application with login module.(Check username and password) On successful login, go to next screen. And on failing login, alert user using Toast. Also pass username to next screen.
9 Create login application where you will have to validate EmailID(UserName). Till the user name and password is not validated, login button should remain disabled.
10 Create an application that will pass username and password on the next screen. link
11 Create simple Application which show the use of List view.
12 Create simple Application which show the use of Radio view,take 3 radio button. When radio button is selected we have to show the text of radio button using Toast.
13 Create simple Application which show the use of CheckBox component, take 3 checkbox and 1 button when you check the checkboxs and click on button then you have to show which checkbox is check with text of checkbox using Toast.
14 Create simple Application which show the use of CheckBox component, take 3 checkbox when you check the checkboxs then you have to show which checkbox is check with text of checkbox using Toast.
15 Create simple Application which show the use of WebView. link
16 Create simple Application which show the use of SeekBar. link
17 Create simple Application which show the use of RatingBar. link
18 Create simple Application which show the use of Alert Dialog. link
19 Create simple Application which show the use of TimePicker.
20 Create simple Application which show the use of DatePicker. link
21 Create simple Application which show the use of ImageView. link
22 Create application in which take two button start and stop service. When you press start button one service should be started and when you press stop then service should be destroy.
23 Create application to create "school.db" database and create table with name "student" which contain columns (id,name,surname,mark) using SQLite database.
24 Create application to insert data into table "student" using SQLite database.
25 Create application which shows inserted data in table student in alert dialog box using SQLite database.
26 Create application which update data in table student using SQLite database.
27 Create application which delete record from table student using SQLite database.
28 Create simple program which show the use of spinners. link