diff options
author | David A. Madore <david+git@madore.org> | 2010-04-27 17:52:35 +0200 |
---|---|---|
committer | David A. Madore <david+git@madore.org> | 2010-04-27 17:52:35 +0200 |
commit | 271f1aa10cc8cff82e40ea786d502f7b8669120e (patch) | |
tree | 498fe552d832ef3447cd3f6dbbc8a1189e42ef3f | |
parent | dec8a7e7e3d3415296e28d6263713776b88b4327 (diff) | |
parent | 4a13778ae23054fe52529f9fcc4ed55940e8cfbf (diff) | |
download | UnicodeMap-271f1aa10cc8cff82e40ea786d502f7b8669120e.tar.gz UnicodeMap-271f1aa10cc8cff82e40ea786d502f7b8669120e.tar.bz2 UnicodeMap-271f1aa10cc8cff82e40ea786d502f7b8669120e.zip |
Merge branch 'temp/forgot-about'
-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> |