47 lines
1.6 KiB
XML
47 lines
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:paddingLeft="10dp"
|
|
android:paddingRight="10dp"
|
|
android:paddingTop="10dp" >
|
|
|
|
<ImageView
|
|
android:id="@+id/identity_picture"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:src="@drawable/ic_launcher" />
|
|
|
|
<TextView
|
|
android:id="@+id/public_name"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignBottom="@+id/identity_picture"
|
|
android:layout_toRightOf="@+id/identity_picture"
|
|
android:ems="10"
|
|
android:text="@string/public_name" />
|
|
|
|
<TextView
|
|
android:id="@+id/description"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@+id/identity_picture"
|
|
android:ems="10"
|
|
android:text="@string/description" />
|
|
|
|
<TextView
|
|
android:id="@+id/crypto_impl"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignLeft="@+id/description"
|
|
android:layout_below="@+id/description"
|
|
android:text="Crypto implementation" />
|
|
|
|
<TextView
|
|
android:id="@+id/key"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@+id/crypto_impl"
|
|
android:text="Key" />
|
|
|
|
</RelativeLayout> |