2022-07-18 15:31:45 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2022-08-17 15:54:30 +08:00
|
|
|
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
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"
|
|
|
|
android:gravity="top|left"
|
2022-08-17 15:54:30 +08:00
|
|
|
android:orientation="vertical"
|
|
|
|
app:cardCornerRadius="12dp"
|
|
|
|
app:cardElevation="16dp">
|
|
|
|
|
2022-07-18 15:31:45 +08:00
|
|
|
|
|
|
|
<WebView
|
|
|
|
android:id="@+id/rlWebview"
|
|
|
|
android:layout_width="match_parent"
|
2022-08-17 15:54:30 +08:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_gravity="top" />
|
|
|
|
</androidx.cardview.widget.CardView>
|