35 lines
1.1 KiB
XML
35 lines
1.1 KiB
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:background="#F7F8F9"
|
|
android:orientation="vertical">
|
|
|
|
<include layout="@layout/view_title_custom" />
|
|
|
|
<EditText
|
|
android:id="@+id/edit"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="54dp"
|
|
android:layout_marginTop="1dp"
|
|
android:background="@color/white"
|
|
android:ellipsize="end"
|
|
android:hint="@string/edit_profile_sign_hint"
|
|
android:paddingLeft="15dp"
|
|
android:paddingRight="15dp"
|
|
android:singleLine="true"
|
|
android:textColor="@color/textColor"
|
|
android:textColorHint="@color/gray3"
|
|
android:textSize="18sp" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="15dp"
|
|
android:layout_marginTop="10dp"
|
|
android:text="@string/edit_profile_sign_max"
|
|
android:textColor="@color/gray3"
|
|
android:textSize="14sp" />
|
|
|
|
|
|
</LinearLayout> |