Journal/res/layout/dialog_add_group.xml

19 lines
550 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="16"
android:hint="@string/name" >
<requestFocus />
</EditText>
</LinearLayout>