8ecc32829b
tabname can not be empty tabname duplicates are not allowed changed inputfield texts to hints drawer now closes when custom tab is clicked tabdialog headers are renamed tabdialog inputfields is now own xml added hint do console-command-textinput
17 lines
530 B
XML
17 lines
530 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:padding="16dp"
|
|
android:orientation="vertical" >
|
|
|
|
<EditText
|
|
android:id="@+id/dialogtab_editText_name"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:ems="10"
|
|
android:inputType="textPersonName"
|
|
android:hint="TABNAME" />
|
|
|
|
</LinearLayout>
|