Journal/res/layout/dialog_add_subject.xml

28 lines
824 B
XML
Raw 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/shortName"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="text"
android:ems="4"
android:maxLength="12"
android:hint="@string/short_name" />
</LinearLayout>