24 lines
1,015 B
XML
24 lines
1,015 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/rename_group_holder"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:padding="@dimen/activity_margin">
|
|
|
|
<com.simplemobiletools.commons.views.MyTextInputLayout
|
|
android:id="@+id/rename_group_hint"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:hint="@string/title">
|
|
|
|
<com.simplemobiletools.commons.views.MyEditText
|
|
android:id="@+id/rename_group_title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:inputType="textCapWords"
|
|
android:singleLine="true"
|
|
android:textCursorDrawable="@null"
|
|
android:textSize="@dimen/normal_text_size" />
|
|
</com.simplemobiletools.commons.views.MyTextInputLayout>
|
|
</LinearLayout>
|