-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathdialog_input_layout.xml
28 lines (26 loc) · 1005 Bytes
/
dialog_input_layout.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/dialog_input_content"
android:layout_width="match_parent"
android:layout_height="68dp" >
<EditText
android:id="@+id/input"
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_centerInParent="true"
android:layout_marginLeft="31dp"
android:layout_marginRight="31dp"
android:gravity="center_vertical"
android:background="@null"
android:singleLine="true"
android:textColor="#222222"
android:textCursorDrawable="@null"
android:textSize="16sp" />
<View
android:layout_width="match_parent"
android:layout_height="2dp"
android:layout_below="@id/input"
android:layout_marginLeft="25dp"
android:layout_marginRight="25dp"
android:background="@drawable/dialog_bottom_line"/>
</RelativeLayout>