领透酷医云安卓客户端

activity_webview.xml 924B

12345678910111213141516171819202122232425262728293031
  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. android:orientation="vertical">
  6. <LinearLayout
  7. android:layout_width="match_parent"
  8. android:layout_height="0dp"
  9. android:layout_weight="1"
  10. android:orientation="vertical">
  11. <FrameLayout
  12. android:id="@+id/webViewContainer"
  13. android:layout_width="match_parent"
  14. android:layout_height="match_parent"
  15. android:background="@android:color/darker_gray">
  16. <View
  17. android:id="@+id/select_popup_view"
  18. android:layout_width="0dp"
  19. android:layout_height="0dp" />
  20. </FrameLayout>
  21. </LinearLayout>
  22. </LinearLayout>