17 lines
614 B
XML
17 lines
614 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:gravity="top|left"
|
|
android:orientation="vertical"
|
|
app:cardCornerRadius="12dp"
|
|
app:cardElevation="16dp">
|
|
|
|
|
|
<WebView
|
|
android:id="@+id/rlWebview"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="top" />
|
|
</androidx.cardview.widget.CardView> |