Journal/res/layout/dialog_add_mark.xml
2024-02-14 00:01:58 +02:00

19 lines
548 B
XML

<?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/mark"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="text"
android:ems="5"
android:maxLength="4"
android:hint="@string/mark" >
<requestFocus />
</EditText>
</LinearLayout>