diff options
author | Parménides GV <parmegv@sdf.org> | 2013-12-12 18:11:19 +0100 |
---|---|---|
committer | Parménides GV <parmegv@sdf.org> | 2013-12-12 18:11:19 +0100 |
commit | af5268b24a546f9a7a2693ec3ae339dd6ca7ea4f (patch) | |
tree | 0ec6bb8bef6fc8c9401be3e8de68e21b08b84a26 /res/layout/about.xml | |
parent | 623cd76d9e1b26d81406fb886dea18a93dee8431 (diff) |
About is now an Activity.
I've also removed some spaces from the text.
Diffstat (limited to 'res/layout/about.xml')
-rw-r--r-- | res/layout/about.xml | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/res/layout/about.xml b/res/layout/about.xml index 40a15794..875bba64 100644 --- a/res/layout/about.xml +++ b/res/layout/about.xml @@ -1,7 +1,10 @@ -<?xml version="1.0" encoding="utf-8"?> <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" - android:layout_width="wrap_content" - android:layout_height="wrap_content" > + xmlns:tools="http://schemas.android.com/tools" + android:id="@+id/dashboardLayout" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:orientation="vertical" + tools:context=".Dashboard" > <LinearLayout android:layout_width="match_parent" @@ -39,10 +42,6 @@ android:layout_height="wrap_content" android:autoLink="all" /> - <Space - android:layout_width="match_parent" - android:layout_height="10sp" /> - <TextView android:layout_width="match_parent" android:layout_height="wrap_content" @@ -74,10 +73,6 @@ android:layout_width="match_parent" android:layout_height="20sp" /> - <Space - android:layout_width="match_parent" - android:layout_height="20sp" /> - <TextView android:layout_width="match_parent" android:layout_height="wrap_content" @@ -105,4 +100,4 @@ android:text="@string/copyright_openssl" /> </LinearLayout> -</ScrollView>
\ No newline at end of file +</ScrollView> |