<?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="wrap_content"
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
<LinearLayout
|
android:layout_width="match_parent"
|
app:layout_constraintBottom_toBottomOf="parent"
|
android:background="@drawable/bg_white_top_20dp"
|
android:orientation="vertical"
|
android:layout_height="wrap_content">
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:id="@+id/tv_report"
|
android:text="举报提问"
|
android:gravity="center"
|
android:textStyle="bold"
|
android:textColor="@color/colorPrimary"
|
android:textSize="15sp"
|
android:paddingVertical="17dp" />
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1px"
|
android:background="@color/dividing_line_color"/>
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:id="@+id/tv_cancel"
|
android:text="取消"
|
android:gravity="center"
|
android:paddingVertical="17dp"
|
android:textSize="15sp"/>
|
</LinearLayout>
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|