Files
i2p.i2p-bote.android/res/layout/fragment_edit_identity.xml
2014-03-08 22:37:56 +00:00

41 lines
1.4 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" />
<EditText
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:hint="@string/public_name"
android:inputType="text" />
<EditText
android:id="@+id/description"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/identity_picture"
android:ems="10"
android:hint="@string/description"
android:inputType="text" />
<TextView
android:id="@+id/error"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/description"
android:textColor="@color/error_color" />
</RelativeLayout>