96 lines
3.6 KiB
XML
96 lines
3.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/main"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/white"
|
|
android:fitsSystemWindows="true"
|
|
android:orientation="vertical"
|
|
tools:context=".ui.activity.ApplyAddFriendActivity">
|
|
|
|
<androidx.core.widget.NestedScrollView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<com.kaixed.kchat.ui.widget.CustomTitleBar
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:titleName="申请添加朋友" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="25dp"
|
|
android:text="发送添加朋友申请"
|
|
android:textSize="13sp" />
|
|
|
|
<androidx.cardview.widget.CardView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="100dp"
|
|
android:layout_marginHorizontal="15dp"
|
|
android:layout_marginTop="5dp"
|
|
android:background="#F7F7F7"
|
|
app:cardCornerRadius="8dp"
|
|
app:cardElevation="0dp"
|
|
app:cardMaxElevation="0dp">
|
|
|
|
<EditText
|
|
android:id="@+id/et_message"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="#F7F7F7"
|
|
android:paddingHorizontal="12dp" />
|
|
</androidx.cardview.widget.CardView>
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="25dp"
|
|
android:layout_marginTop="15dp"
|
|
android:text="设置备注"
|
|
android:textSize="13sp" />
|
|
|
|
<androidx.cardview.widget.CardView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="50dp"
|
|
android:layout_marginHorizontal="15dp"
|
|
android:layout_marginTop="5dp"
|
|
android:background="#F7F7F7"
|
|
app:cardCornerRadius="8dp"
|
|
app:cardElevation="0dp"
|
|
app:cardMaxElevation="0dp">
|
|
|
|
<EditText
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="#F7F7F7"
|
|
android:hint="hh"
|
|
android:paddingHorizontal="12dp" />
|
|
</androidx.cardview.widget.CardView>
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
</androidx.core.widget.NestedScrollView>
|
|
|
|
<TextView
|
|
android:id="@+id/tv_send_apply"
|
|
android:layout_width="150dp"
|
|
android:layout_height="48dp"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginBottom="40dp"
|
|
android:background="@drawable/add_contact_request_send_btn_bac"
|
|
android:gravity="center"
|
|
android:text="发送"
|
|
android:textColor="@color/white"
|
|
android:textSize="19sp" />
|
|
|
|
</LinearLayout> |