| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content">
- <LinearLayout
- android:id="@+id/agree_ll"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="25dp"
- android:layout_marginBottom="25dp"
- android:background="@drawable/dialog_message_bg"
- android:orientation="vertical">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_horizontal"
- android:layout_marginTop="10dp"
- android:text="用户使用协议"
- android:textColor="@color/black"
- android:textSize="18sp" />
- <ScrollView
- android:layout_width="fill_parent"
- android:layout_height="400dp"
- android:layout_margin="15dp"
- android:background="@color/white"
- android:fadingEdge="vertical"
- android:scrollbars="vertical">
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:lineSpacingExtra="2dp"
- android:padding="10dp"
- android:singleLine="false"
- android:text=" XXXXXXXXXXX"
- android:textColor="@color/black"
- android:textSize="14sp"
- />
- </ScrollView>
- </LinearLayout>
- <ImageButton
- android:id="@+id/agree_canale"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignTop="@id/agree_ll"
- android:layout_alignRight="@id/agree_ll"
- android:background="@color/transparent"
- android:src="@mipmap/closex" />
- </RelativeLayout>
|