Android - Buttons, TextView & EditText

Objective #1: Place Buttons, TextViews and EditText views on your Activity window.

Objective #2: Use a TextView.

Objective #3: Use a Button.

Objective #4: Use an EditText View to obtain input from the user.

Objective #5: Use Toast.

Objective #6: Use common methods in an Activity's onCreate method.

Objective #7: Change colors with Java code.

TextView x = new TextView(this);       
x.setText("BLUE");
x.setTextColor(Color.BLUE);      
setContentView(x);

Objective #8: Create an app that uses Button, TextView and EditText objects.