<?xml version="1.0" encoding="utf-8"?>
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:background="@color/white"
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="0dp"
|
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintDimensionRatio="390:490"
|
android:background="@mipmap/bg_mine"/>
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="联系客服"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintTop_toTopOf="parent"
|
android:textColor="@color/textColor"
|
android:textSize="16sp"
|
android:textStyle="bold"
|
android:id="@+id/tv_title"
|
android:layout_marginTop="44dp"/>
|
<ImageView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:src="@mipmap/back"
|
android:padding="10dp"
|
app:layout_constraintStart_toStartOf="parent"
|
android:layout_marginStart="4dp"
|
app:layout_constraintTop_toTopOf="@id/tv_title"
|
app:layout_constraintBottom_toBottomOf="@id/tv_title"
|
android:id="@+id/iv_back"/>
|
<com.scwang.smart.refresh.layout.SmartRefreshLayout
|
android:id="@+id/refreshLayout"
|
android:layout_width="match_parent"
|
app:layout_constraintTop_toBottomOf="@id/tv_title"
|
android:layout_marginTop="30dp"
|
app:layout_constraintBottom_toBottomOf="parent"
|
android:layout_height="0dp">
|
<com.scwang.smart.refresh.header.ClassicsHeader
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"/>
|
<androidx.core.widget.NestedScrollView
|
android:layout_width="match_parent"
|
android:layout_height="match_parent">
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="vertical">
|
<com.facebook.drawee.view.SimpleDraweeView
|
android:id="@+id/iv_code"
|
android:layout_width="132dp"
|
android:layout_height="132dp"
|
android:layout_gravity="center"
|
android:layout_marginTop="10dp"
|
app:actualImageScaleType="fitXY"
|
app:placeholderImage="@color/page_bg"/>
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="扫码添加客服微信"
|
android:layout_gravity="center"
|
android:layout_marginTop="13dp"
|
android:textColor="@color/textColor"
|
android:textSize="13sp"/>
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:paddingTop="30dp"
|
android:paddingBottom="20dp"
|
android:background="@color/white"
|
android:layout_marginTop="40dp"
|
android:text="问题类型"
|
android:paddingHorizontal="18dp"
|
android:textStyle="bold"
|
android:textColor="@color/textColor"
|
android:textSize="15sp"/>
|
<androidx.recyclerview.widget.RecyclerView
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:background="@color/white"
|
android:id="@+id/rv_list"/>
|
</LinearLayout>
|
</androidx.core.widget.NestedScrollView>
|
|
<com.scwang.smart.refresh.footer.ClassicsFooter
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"/>
|
</com.scwang.smart.refresh.layout.SmartRefreshLayout>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|