aboutsummaryrefslogtreecommitdiffstats
path: root/app/src/main/res/layout/item_pubkey.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/layout/item_pubkey.xml')
-rw-r--r--app/src/main/res/layout/item_pubkey.xml23
1 files changed, 13 insertions, 10 deletions
diff --git a/app/src/main/res/layout/item_pubkey.xml b/app/src/main/res/layout/item_pubkey.xml
index 34a7330..ed0c7d2 100644
--- a/app/src/main/res/layout/item_pubkey.xml
+++ b/app/src/main/res/layout/item_pubkey.xml
@@ -18,8 +18,9 @@
*/
-->
-<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+<RelativeLayout
android:id="@android:id/content"
+ xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="10dip">
@@ -28,29 +29,31 @@
android:id="@android:id/icon1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:src="@drawable/pubkey"
- android:contentDescription="@string/image_description_key_is_locked"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
- android:layout_marginLeft="10dip"/>
+ android:layout_marginLeft="10dip"
+ android:contentDescription="@string/image_description_key_is_locked"
+ android:src="@drawable/pubkey"/>
<TextView
android:id="@android:id/text1"
+ android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:textAppearance="?android:attr/textAppearanceLarge"
- android:text="Key Example"
- android:layout_alignParentStart="true"
android:layout_alignParentLeft="true"
- android:bufferType="normal" android:layout_width="wrap_content" android:layout_toLeftOf="@android:id/icon1"/>
+ android:layout_alignParentStart="true"
+ android:layout_toLeftOf="@android:id/icon1"
+ android:bufferType="normal"
+ android:text="Key Example"
+ android:textAppearance="?android:attr/textAppearanceLarge"/>
<TextView
android:id="@android:id/text2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:textAppearance="?android:attr/textAppearanceSmall"
- android:text="DSA 1024-bit"
android:layout_below="@android:id/text1"
+ android:text="DSA 1024-bit"
+ android:textAppearance="?android:attr/textAppearanceSmall"
/>
</RelativeLayout>