12345678910111213141516171819202122232425262728293031323334353637 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_marginLeft="10dp"
- android:layout_marginRight="10dp"
- android:layout_marginBottom="10dp"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:orientation="vertical">
- <ScrollView
- android:padding="5dp"
- android:background="@drawable/ixunqu_activity_container"
- android:id="@+id/xunqu_protocol_scroll_view"
- android:layout_width="wrap_content"
- android:layout_height="160dp">
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:textColor="#7CB4E1"
- android:text="@string/xunqu_dialog_protocol" />
- </ScrollView>
- <Button
- android:layout_marginTop="10dp"
- android:id="@+id/xunqu_protocol_btn_back"
- android:layout_width="match_parent"
- android:layout_height="40dp"
- android:layout_below="@+id/xunqu_protocol_scroll_view"
- android:layout_centerHorizontal="true"
- android:background="@drawable/ixunqu_button_blue"
- android:layout_marginLeft="12dp"
- android:layout_marginRight="12dp"
- android:textColor="#FFFFFF"
- android:text="@string/xunqu_protocol_btn_back" />
- </RelativeLayout>
|