aboutsummaryrefslogtreecommitdiffstats
path: root/res/layout
diff options
context:
space:
mode:
authorHerbert von Broeuschmeul <Herbert.Broeuschmeul@gmail.com>2010-12-03 02:01:17 +0100
committerHerbert von Broeuschmeul <Herbert.Broeuschmeul@gmail.com>2010-12-03 02:01:17 +0100
commita904b9153bc5b34a6b5491b885d93fdb5b0179b0 (patch)
tree5b4187c365a3d68711fd2580c54d10dd01d472af /res/layout
parent17f8164913422da101be1c667207608c5c6c1003 (diff)
downloadBlueGPS-a904b9153bc5b34a6b5491b885d93fdb5b0179b0.zip
BlueGPS-a904b9153bc5b34a6b5491b885d93fdb5b0179b0.tar.gz
BlueGPS-a904b9153bc5b34a6b5491b885d93fdb5b0179b0.tar.bz2
first try to add an about window (merge from 1.0.x dev branch)
Diffstat (limited to 'res/layout')
-rw-r--r--res/layout/about.xml79
1 files changed, 79 insertions, 0 deletions
diff --git a/res/layout/about.xml b/res/layout/about.xml
new file mode 100644
index 0000000..f74e710
--- /dev/null
+++ b/res/layout/about.xml
@@ -0,0 +1,79 @@
+<?xml version="1.0" encoding="utf-8"?>
+<ScrollView
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"
+ >
+ <LinearLayout
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"
+ android:orientation="vertical"
+ >
+ <LinearLayout
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:orientation="horizontal"
+ >
+ <TextView
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:textSize="16sp"
+ android:textColor="?android:attr/textColorPrimary"
+ android:text="@string/about_version"
+ />
+ <TextView
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:textSize="16sp"
+ android:textColor="?android:attr/textColorPrimary"
+ android:text="@string/versionName"
+ />
+ </LinearLayout>
+ <TextView
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:paddingTop="16sp"
+ android:textSize="16sp"
+ android:textColor="?android:attr/textColorPrimary"
+ android:autoLink="web"
+ android:text="@string/about_copyright"
+ />
+ <TextView
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:paddingTop="16sp"
+ android:textSize="16sp"
+ android:textColor="?android:attr/textColorPrimary"
+ android:autoLink="web"
+ android:text="@string/about_app_desc"
+ />
+ <TextView
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:paddingTop="16sp"
+ android:textSize="16sp"
+ android:textColor="?android:attr/textColorPrimary"
+ android:autoLink="web"
+ android:text="@string/about_license"
+ />
+ <TextView
+ android:id="@+id/about_sources"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:paddingTop="16sp"
+ android:textSize="16sp"
+ android:textColor="?android:attr/textColorPrimary"
+ android:autoLink="web"
+ android:text="@string/about_sources"
+ /><!--
+ <TextView
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:paddingTop="16sp"
+ android:textSize="16sp"
+ android:textColor="?android:attr/textColorPrimary"
+ android:autoLink="web"
+ android:text="@string/about"
+ />
+ --></LinearLayout>
+</ScrollView> \ No newline at end of file