layout_full_webview.xml 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:orientation="vertical">
  6. <LinearLayout
  7. android:layout_width="match_parent"
  8. android:layout_height="50dp"
  9. android:orientation="horizontal">
  10. <Space
  11. android:layout_width="match_parent"
  12. android:layout_height="match_parent"
  13. android:layout_weight="1" />
  14. <TextView
  15. android:id="@+id/btn_close"
  16. android:layout_width="wrap_content"
  17. android:layout_height="match_parent"
  18. android:gravity="center"
  19. android:paddingLeft="15dp"
  20. android:paddingRight="15dp"
  21. android:text="关闭"
  22. android:textColor="@color/dialogxIOSBlue"
  23. android:textSize="18dp" />
  24. </LinearLayout>
  25. <WebView
  26. android:id="@+id/webView"
  27. android:layout_width="match_parent"
  28. android:layout_height="match_parent" />
  29. </LinearLayout>