ht_dialog_agreement.xml 2.0 KB
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
   android:layout_width="match_parent"
   android:layout_gravity="center"
   android:layout_height="wrap_content"
   android:layout_marginTop="10dp"
   android:layout_marginBottom="10dp"
   android:orientation="vertical">

   <RelativeLayout
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      style="@style/ht_title_style">

      <TextView
         android:id="@+id/ht_agreement_title"
         android:layout_width="match_parent"
         android:layout_height="40dp"
         android:text="用户协议"
         style="@style/ht_title_text_style" />

      <ImageView
         android:id="@+id/ht_close_img"
         style="@style/ht_close_style"
         android:layout_width="18dp"
         android:layout_height="18dp" />
   </RelativeLayout>

   <RelativeLayout
      android:layout_width="match_parent"
      android:padding="5dp"
      style="@style/ht_content_style"
      android:layout_height="match_parent">

      <ImageView
         android:id="@+id/ht_agreement_unconnect"
         android:layout_width="68dp"
         android:visibility="gone"
         android:background="@drawable/ht_warn_no_wifi"
         android:layout_centerInParent="true"
         android:layout_height="68dp" />

      <ScrollView
         android:layout_width="match_parent"
         android:minHeight="200dp"
         android:layout_height="wrap_content">

         <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical">

            <TextView
               android:id="@+id/ht_agreement_content"
               android:layout_width="wrap_content"
               android:layout_height="wrap_content"
               android:textColor="@color/ht_common_text"
               android:text="" />
         </LinearLayout>
      </ScrollView>
   </RelativeLayout>
</LinearLayout>