19 lines
695 B
XML
19 lines
695 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.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"/>
|
|
|
|
</LinearLayout>
|