window_update_url.xml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent">
  5. <LinearLayout
  6. android:layout_width="match_parent"
  7. android:layout_height="match_parent"
  8. android:orientation="vertical">
  9. <TextView
  10. android:id="@+id/window_update_url_cur"
  11. android:layout_width="wrap_content"
  12. android:layout_height="wrap_content"
  13. android:text="当前访问地址:"
  14. android:textSize="@dimen/dp_20"></TextView>
  15. <FrameLayout
  16. android:layout_width="match_parent"
  17. android:layout_height="@dimen/dp_1_5"
  18. android:background="@color/black"></FrameLayout>
  19. <EditText
  20. android:id="@+id/window_update_url_update"
  21. android:layout_width="match_parent"
  22. android:layout_height="@dimen/dp_100"
  23. android:layout_marginTop="@dimen/dp_20"
  24. android:height="@dimen/dp_25"
  25. android:hint="输入新地址"></EditText>
  26. <TextView
  27. android:id="@+id/window_update_url_after"
  28. android:layout_width="wrap_content"
  29. android:layout_height="wrap_content"
  30. android:layout_marginTop="@dimen/dp_20"
  31. android:text="修改访问地址:"
  32. android:textSize="@dimen/dp_20"></TextView>
  33. <Button
  34. android:id="@+id/window_update_url_update_ok"
  35. android:layout_width="wrap_content"
  36. android:layout_height="wrap_content"
  37. android:layout_gravity="center"
  38. android:text="修改"
  39. android:textSize="@dimen/dp_20"></Button>
  40. </LinearLayout>
  41. </ScrollView>