A general guide and walkthrough of developing for Android can be found at http://developer.android.com/guide/index.html
The detailed API documentation is available at http://developer.android.com/reference/packages.html
Note: Many Examples will be given in class through demonstrations not available in the slides
<TextView android:id="@+id/anID" />
<TextView android:layout_below="@id/anID" />
<Button
android:text="New Button"
android:id="@+id/button"/>
<ImageButton
android:src="@drawable/IMAGE"
/>
Each checkbox specifies an onClick handler, but multiple checkboxes can use the same one
<CheckBox
android:text="Checkbox Text"
/>
<RadioGroup>
<RadioButton android:text="Radio Button 1"/>
<RadioButton android:text="Radio Button 2"/>
</RadioGroup>
<ToggleButton
android:textOff="OFF"
android:textOn="ON" />
<Switch
android:text="Switch Label" />
<Spinner
android:entries="@array/ChoicesFromFile" />
<ImageView
android:src="@drawable/ImageFile" />