<?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"
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
<TextView
|
android:id="@+id/tv_total"
|
android:layout_width="match_parent"
|
android:layout_height="98dp"
|
app:layout_constraintTop_toTopOf="parent"
|
android:layout_margin="14dp"
|
android:background="@drawable/bg_green_10dp"
|
android:textSize="24sp"
|
android:text="0"
|
android:gravity="center_horizontal"
|
android:paddingTop="15dp"
|
android:textColor="@color/white"
|
android:textStyle="bold"/>
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
android:layout_marginBottom="20dp"
|
android:text="当前能量值"
|
android:textColor="@color/white"
|
android:textSize="14sp"
|
android:alpha="0.8"
|
app:layout_constraintBottom_toBottomOf="@id/tv_total"/>
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:id="@+id/tv_1"
|
android:textSize="12sp"
|
android:textColor="@color/textColor66"
|
android:text="客服微信二维码"
|
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
android:layout_marginBottom="30dp"/>
|
|
<com.facebook.drawee.view.SimpleDraweeView
|
android:id="@+id/iv_code"
|
android:layout_width="96dp"
|
android:layout_height="96dp"
|
android:layout_gravity="center"
|
app:layout_constraintBottom_toTopOf="@id/tv_1"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
app:actualImageScaleType="centerInside"
|
app:roundingBorderColor="@color/white"
|
app:placeholderImage="@color/page_bg"
|
android:layout_marginBottom="4dp"
|
app:roundingBorderWidth="8dp"/>
|
<com.scwang.smart.refresh.layout.SmartRefreshLayout
|
android:layout_width="match_parent"
|
android:layout_height="0dp"
|
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintBottom_toTopOf="@id/iv_code"
|
android:layout_marginBottom="8dp"
|
android:layout_marginTop="128dp"
|
android:id="@+id/refreshLayout">
|
<com.scwang.smart.refresh.header.ClassicsHeader
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"/>
|
<androidx.recyclerview.widget.RecyclerView
|
android:id="@+id/rv_list"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"/>
|
<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>
|