| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?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="16sp" />
- <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:id="@+id/agree_msg"
- 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="12sp" />
- </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>
|