diff options
author | Thialfihar <thi@thialfihar.org> | 2014-03-20 18:33:46 +0100 |
---|---|---|
committer | Thialfihar <thi@thialfihar.org> | 2014-03-20 18:40:29 +0100 |
commit | 602fb654af521c7a892ea0c8557a74d8e9cffeda (patch) | |
tree | 22a651cbff4964535a8ab643e3a980a63d47039e | |
parent | a17481b80a2d717afdfc981c5c7e7528d1a7abca (diff) | |
download | open-keychain-602fb654af521c7a892ea0c8557a74d8e9cffeda.tar.gz open-keychain-602fb654af521c7a892ea0c8557a74d8e9cffeda.tar.bz2 open-keychain-602fb654af521c7a892ea0c8557a74d8e9cffeda.zip |
Move fingerprint to the right in key list entry
Fits much better there and doesn't separate the user ID.
-rw-r--r-- | OpenPGP-Keychain/src/main/res/layout/import_keys_list_entry.xml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/OpenPGP-Keychain/src/main/res/layout/import_keys_list_entry.xml b/OpenPGP-Keychain/src/main/res/layout/import_keys_list_entry.xml index fb092793b..724f538dd 100644 --- a/OpenPGP-Keychain/src/main/res/layout/import_keys_list_entry.xml +++ b/OpenPGP-Keychain/src/main/res/layout/import_keys_list_entry.xml @@ -52,13 +52,6 @@ android:textAppearance="?android:attr/textAppearanceMedium" /> <TextView - android:id="@+id/fingerprint" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:text="fingerprint" - android:textAppearance="?android:attr/textAppearanceSmall" /> - - <TextView android:id="@+id/mainUserIdRest" android:layout_width="wrap_content" android:layout_height="wrap_content" @@ -90,6 +83,13 @@ android:textAppearance="?android:attr/textAppearanceSmall" /> <TextView + android:id="@+id/fingerprint" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="fingerprint" + android:textAppearance="?android:attr/textAppearanceSmall" /> + + <TextView android:id="@+id/status" android:layout_width="wrap_content" android:layout_height="wrap_content" @@ -106,4 +106,4 @@ android:orientation="vertical" > </LinearLayout> -</LinearLayout>
\ No newline at end of file +</LinearLayout> |