diff options
author | Dominik Schürmann <dominik@dominikschuermann.de> | 2014-01-31 18:32:58 +0100 |
---|---|---|
committer | Dominik Schürmann <dominik@dominikschuermann.de> | 2014-01-31 18:32:58 +0100 |
commit | 35f4c470d3d532f27ca512b636152fd316bc6abb (patch) | |
tree | a0f8b4ec182f273cb6be48446265c0cb0d814751 /OpenPGP-Keychain/src/main/res/layout | |
parent | 34d791c9bdddd189e61bdf7e71773fe5c68832cc (diff) | |
download | open-keychain-35f4c470d3d532f27ca512b636152fd316bc6abb.tar.gz open-keychain-35f4c470d3d532f27ca512b636152fd316bc6abb.tar.bz2 open-keychain-35f4c470d3d532f27ca512b636152fd316bc6abb.zip |
Fix display of long user ids in key view
Diffstat (limited to 'OpenPGP-Keychain/src/main/res/layout')
-rw-r--r-- | OpenPGP-Keychain/src/main/res/layout/view_key_activity.xml | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/OpenPGP-Keychain/src/main/res/layout/view_key_activity.xml b/OpenPGP-Keychain/src/main/res/layout/view_key_activity.xml index 6fde11e94..73a86a725 100644 --- a/OpenPGP-Keychain/src/main/res/layout/view_key_activity.xml +++ b/OpenPGP-Keychain/src/main/res/layout/view_key_activity.xml @@ -1,14 +1,14 @@ <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" xmlns:bootstrapbutton="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" - android:layout_height="match_parent" > + android:layout_height="match_parent"> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical" android:paddingLeft="16dp" - android:paddingRight="16dp" > + android:paddingRight="16dp"> <TextView style="@style/SectionHeader" @@ -22,20 +22,20 @@ android:layout_width="wrap_content" android:layout_height="0dp" android:layout_weight="1" - android:stretchColumns="1" > + android:stretchColumns="1"> <TableRow> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" - android:layout_gravity="center_vertical" + android:layout_gravity="top" android:paddingRight="10dip" android:text="@string/label_name" /> <TextView android:id="@+id/name" - android:layout_width="wrap_content" + android:layout_width="0dp" android:layout_height="wrap_content" android:paddingRight="5dip" android:text="" /> @@ -46,13 +46,13 @@ <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" - android:layout_gravity="center_vertical" + android:layout_gravity="top" android:paddingRight="10dip" android:text="@string/label_email" /> <TextView android:id="@+id/email" - android:layout_width="wrap_content" + android:layout_width="0dp" android:layout_height="wrap_content" android:paddingRight="5dip" android:text="" /> @@ -63,13 +63,13 @@ <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" - android:layout_gravity="center_vertical" + android:layout_gravity="top" android:paddingRight="10dip" android:text="@string/label_comment" /> <TextView android:id="@+id/comment" - android:layout_width="wrap_content" + android:layout_width="0dp" android:layout_height="wrap_content" android:paddingRight="5dip" android:text="" /> @@ -88,7 +88,7 @@ android:layout_width="wrap_content" android:layout_height="0dp" android:layout_weight="1" - android:stretchColumns="1" > + android:stretchColumns="1"> <TableRow> |