fragment_guide_webview.xml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent">
  6. <FrameLayout
  7. android:layout_gravity="center"
  8. android:id="@+id/guideWebViewFrame"
  9. android:layout_width="330dp"
  10. android:layout_height="330dp">
  11. <FrameLayout
  12. android:layout_gravity="center"
  13. android:background="@drawable/rectangle"
  14. android:layout_width="match_parent"
  15. android:layout_height="match_parent"
  16. android:layout_marginLeft="6dp"
  17. android:layout_marginTop="6dp"
  18. android:layout_marginRight="6dp"
  19. android:layout_marginBottom="6dp">
  20. <WebView
  21. android:layout_gravity="center"
  22. android:id="@+id/guideWebview"
  23. android:layout_width="300dp"
  24. android:layout_height="300dp" />
  25. </FrameLayout>
  26. <ImageView
  27. android:layout_gravity="end"
  28. android:id="@+id/closeImage"
  29. android:layout_width="wrap_content"
  30. android:layout_height="wrap_content"
  31. app:srcCompat="@drawable/close_screen" />
  32. </FrameLayout>
  33. </FrameLayout>