2022-07-18 15:31:45 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2022-08-17 15:16:14 +08:00
|
|
|
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
|
2022-07-27 17:52:35 +08:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2022-07-18 15:31:45 +08:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2022-08-17 15:16:14 +08:00
|
|
|
android:orientation="vertical"
|
|
|
|
app:cardCornerRadius="12dp"
|
|
|
|
app:cardElevation="16dp">
|
2022-07-18 15:31:45 +08:00
|
|
|
|
2022-08-17 15:16:14 +08:00
|
|
|
|
|
|
|
<LinearLayout
|
2022-07-27 17:52:35 +08:00
|
|
|
android:layout_width="match_parent"
|
2022-08-17 15:16:14 +08:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
2022-07-27 17:52:35 +08:00
|
|
|
|
2022-08-17 15:16:14 +08:00
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/title_laout"
|
2022-07-27 17:52:35 +08:00
|
|
|
android:layout_width="match_parent"
|
2022-08-17 15:16:14 +08:00
|
|
|
android:layout_height="50dp">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/titleView"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:gravity="center"
|
|
|
|
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_centerVertical="true"
|
|
|
|
android:onClick="backClick"
|
|
|
|
android:padding="9dp"
|
|
|
|
android:src="@mipmap/icon_back"
|
|
|
|
android:tint="@color/textColor" />
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/img_more"
|
|
|
|
android:layout_width="40dp"
|
|
|
|
android:layout_height="40dp"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:padding="9dp"
|
|
|
|
android:src="@mipmap/btn_more_black"
|
|
|
|
android:tint="@color/textColor"
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
<WebView
|
|
|
|
android:id="@+id/rlWebview"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
2022-07-18 15:31:45 +08:00
|
|
|
|
2022-08-17 15:16:14 +08:00
|
|
|
</androidx.cardview.widget.CardView>
|