编辑资料

This commit is contained in:
hch
2023-10-18 14:32:57 +08:00
parent 4f5085fc85
commit 1a36077fba
15 changed files with 2208 additions and 1 deletions

View File

@@ -0,0 +1,35 @@
<?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>