123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?xml version="1.0" encoding="utf-8"?>
- <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical">
- <TextView
- android:id="@+id/window_update_url_cur"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="当前访问地址:"
- android:textSize="@dimen/dp_20"></TextView>
- <FrameLayout
- android:layout_width="match_parent"
- android:layout_height="@dimen/dp_1_5"
- android:background="@color/black"></FrameLayout>
- <EditText
- android:id="@+id/window_update_url_update"
- android:layout_width="match_parent"
- android:layout_height="@dimen/dp_100"
- android:layout_marginTop="@dimen/dp_20"
- android:height="@dimen/dp_25"
- android:hint="输入新地址"></EditText>
- <TextView
- android:id="@+id/window_update_url_after"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="@dimen/dp_20"
- android:text="修改访问地址:"
- android:textSize="@dimen/dp_20"></TextView>
- <Button
- android:id="@+id/window_update_url_update_ok"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:text="修改"
- android:textSize="@dimen/dp_20"></Button>
- </LinearLayout>
- </ScrollView>
|