19 lines
752 B
XML
19 lines
752 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/dialog_holder"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:paddingTop="@dimen/activity_margin">
|
|
|
|
<com.simplemobiletools.commons.views.MyEditText
|
|
android:id="@+id/custom_label_edittext"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="@dimen/activity_margin"
|
|
android:layout_marginEnd="@dimen/activity_margin"
|
|
android:inputType="textCapSentences"
|
|
android:textCursorDrawable="@null"
|
|
android:textSize="@dimen/normal_text_size"/>
|
|
|
|
</RelativeLayout>
|