diff options
author | Arne Schwabe <arne@rfc2549.org> | 2013-03-14 10:16:02 +0100 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2013-03-14 10:16:02 +0100 |
commit | 96ccb0151c46c87b29127dde0afe6edbf048bdf3 (patch) | |
tree | 3a9cec89ac059978de44a480ce91896994d29bb5 /res/layout/about.xml | |
parent | 9a512ba885419d934a631dcb56bdb11d29dd8705 (diff) |
Add padding to a few fragments
Diffstat (limited to 'res/layout/about.xml')
-rw-r--r-- | res/layout/about.xml | 38 |
1 files changed, 24 insertions, 14 deletions
diff --git a/res/layout/about.xml b/res/layout/about.xml index e6abed96..09194631 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" + xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" - android:layout_height="wrap_content" > + android:layout_height="wrap_content" + android:paddingLeft="@dimen/stdpadding" + android:paddingRight="@dimen/stdpadding" > <LinearLayout android:layout_width="match_parent" @@ -11,7 +14,9 @@ <TextView android:id="@+id/version" android:layout_width="match_parent" - android:layout_height="wrap_content" /> + android:layout_height="wrap_content" + android:textAppearance="?android:attr/textAppearanceLarge" + tools:ignore="SelectableText" /> <Space android:layout_width="match_parent" @@ -40,7 +45,8 @@ <TextView android:id="@+id/donatestring" android:layout_width="match_parent" - android:layout_height="wrap_content" /> + android:layout_height="wrap_content" + tools:ignore="SelectableText" /> <Space android:layout_width="match_parent" @@ -50,7 +56,8 @@ android:id="@+id/translation" android:layout_width="match_parent" android:layout_height="wrap_content" - android:autoLink="all" /> + android:autoLink="all" + tools:ignore="SelectableText" /> <Space android:layout_width="match_parent" @@ -127,18 +134,21 @@ android:layout_width="match_parent" android:layout_height="wrap_content" android:text="@string/copyright_openssl" /> - - + + <Space + android:layout_width="match_parent" + android:layout_height="20sp" /> + <TextView - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:text="@string/bouncy_castle" - android:textAppearance="?android:attr/textAppearanceMedium" /> + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:text="@string/bouncy_castle" + android:textAppearance="?android:attr/textAppearanceMedium" /> - <TextView - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:text="@string/copyright_bouncycastle" /> + <TextView + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:text="@string/copyright_bouncycastle" /> </LinearLayout> </ScrollView>
\ No newline at end of file |