+ missing resource file

This commit is contained in:
Philipp Crocoll 2013-07-13 12:43:20 +02:00
parent e887ce1db2
commit 30cdc6136f

View File

@ -0,0 +1,31 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<EditText
android:id="@+id/title"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:singleLine="true"
android:inputType="text"
android:hint="@string/field_name" />
<EditText
android:id="@+id/value"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/title"
android:inputType="textMultiLine"
android:hint="@string/field_value"/>
<CheckBox
android:id="@+id/protection"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/value"
android:text="@string/protection"/>
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/protection"
android:text="@string/delete_extra_string"
android:id="@+id/delete_extra" />
</RelativeLayout>