Button Test
Button Test
<LinearLayout xmlns:android=”http://schemas.android.com/apk/res/android”
android:orientation=”vertical”
android:layout_width=”fill_parent”
android:layout_height=”fill_parent”>
<Button
android:layout_width=”fill_parent”
android:layout_height=”wrap_content”
android:text=”save”/>
<ToggleButton
android:layout_width=”fill_parent”
android:layout_height=”wrap_content”
android:textOn=”play”
android:textOff=”stop”/>
<ImageButton
android:layout_width=”wrap_content”
android:layout_height=”wrap_content”
android:src=”@drawable/icon”/>
<ImageButton
android:layout_width=”wrap_content”
android:layout_height=”wrap_content”
android:src=”@drawable/pig”/>
</LinearLayout>
\