diff options
-rw-r--r-- | res/layout/about_layout.xml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/res/layout/about_layout.xml b/res/layout/about_layout.xml new file mode 100644 index 0000000..f1ab2c7 --- /dev/null +++ b/res/layout/about_layout.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="utf-8"?> +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:padding="10dp" + android:orientation="vertical"> + <TextView android:id="@+id/aboutText" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:text="@string/about_text" /> + <Button android:id="@+id/aboutOk" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:text="@string/ok_button" /> +</LinearLayout> |