18 lines
665 B
XML
18 lines
665 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginTop="18dp"
|
|
android:layout_marginBottom="18dp"
|
|
android:gravity="center_vertical|right"
|
|
android:orientation="vertical"
|
|
app:cardCornerRadius="12dp"
|
|
app:cardElevation="16dp">
|
|
|
|
|
|
<WebView
|
|
android:id="@+id/rlWebview"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
</androidx.cardview.widget.CardView> |