Journal/res/layout/dialog_add_criteria.xml

32 lines
964 B
XML
Raw Permalink Normal View History

2024-02-14 00:01:58 +02:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<EditText
android:id="@+id/name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="text"
android:ems="10"
android:maxLength="255"
android:hint="@string/name" >
<requestFocus />
</EditText>
<EditText
android:id="@+id/date"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="date"
android:ems="10"
android:maxLength="12"
android:hint="@string/date" />
<Spinner
android:id="@+id/subjectSpinner"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>