12345678910111213141516171819202122232425262728293031323334353637 |
- <?xml version="1.0" encoding="utf-8"?>
- <FrameLayout 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">
- <FrameLayout
- android:layout_gravity="center"
- android:id="@+id/guideWebViewFrame"
- android:layout_width="330dp"
- android:layout_height="330dp">
- <FrameLayout
- android:layout_gravity="center"
- android:background="@drawable/rectangle"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_marginLeft="6dp"
- android:layout_marginTop="6dp"
- android:layout_marginRight="6dp"
- android:layout_marginBottom="6dp">
- <WebView
- android:layout_gravity="center"
- android:id="@+id/guideWebview"
- android:layout_width="300dp"
- android:layout_height="300dp" />
- </FrameLayout>
- <ImageView
- android:layout_gravity="end"
- android:id="@+id/closeImage"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- app:srcCompat="@drawable/close_screen" />
- </FrameLayout>
- </FrameLayout>
|