45 lines
1.7 KiB
XML
45 lines
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.constraintlayout.widget.ConstraintLayout 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:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<FrameLayout
|
|
android:id="@+id/rl_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="70dp"
|
|
android:background="@color/white"
|
|
android:paddingTop="24dp"
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
<TextView
|
|
android:id="@+id/titleView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center"
|
|
android:text="@string/live_end_view_ban_punish_title"
|
|
android:textColor="@color/textColor"
|
|
android:textSize="18sp"
|
|
android:textStyle="bold" />
|
|
|
|
<ImageView
|
|
android:id="@+id/btn_back"
|
|
android:layout_width="40dp"
|
|
android:layout_height="40dp"
|
|
android:layout_gravity="center_vertical"
|
|
android:padding="9dp"
|
|
android:src="@mipmap/icon_back"
|
|
android:tint="@color/textColor"
|
|
tools:ignore="UseAppTint" />
|
|
|
|
</FrameLayout>
|
|
|
|
<com.yunbao.common.custom.CommonRefreshView
|
|
android:id="@+id/refreshView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@id/rl_layout" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |