领透酷医云安卓客户端

web_activity.xml 1.2KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:orientation="vertical"
  7. >
  8. <RelativeLayout
  9. android:layout_width="match_parent"
  10. android:layout_height="match_parent">
  11. <com.tencent.smtt.sdk.WebView
  12. android:id="@+id/webView"
  13. android:layout_width="match_parent"
  14. android:layout_height="match_parent"
  15. />
  16. <ProgressBar
  17. android:id="@+id/progressBar"
  18. style="?android:attr/progressBarStyleHorizontal"
  19. android:layout_width="match_parent"
  20. android:layout_height="2dp"
  21. android:max="100"
  22. android:progress="0" />
  23. <TextView
  24. android:id="@+id/tvStatus"
  25. android:layout_width="wrap_content"
  26. android:layout_height="wrap_content"
  27. android:background="#903B9FF8"
  28. android:padding="5dp"
  29. android:text="当前内核:--\n内核版本:---"
  30. android:textColor="#FFF"
  31. android:textSize="12sp" />
  32. </RelativeLayout>
  33. </LinearLayout>