sdk_protocol_web.xml 859 B

12345678910111213141516171819202122232425
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="vertical"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent">
  6. <LinearLayout
  7. android:layout_gravity="center"
  8. android:layout_width="match_parent"
  9. android:layout_height="match_parent"
  10. android:orientation="vertical"
  11. android:background="#363a44">
  12. <View
  13. android:id="@+id/status_bar"
  14. android:layout_width="match_parent"
  15. android:layout_height="0dp"
  16. android:background="@color/sdk_statusbar"/>
  17. <WebView
  18. android:id="@+id/web_view"
  19. android:layout_width="match_parent"
  20. android:layout_height="match_parent"/>
  21. </LinearLayout>
  22. </FrameLayout>