ht_agreement_layout.xml 2.0 KB
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
   android:orientation="vertical"
   android:layout_width="match_parent"
   android:layout_height="match_parent">

   <RelativeLayout
      android:layout_width="match_parent"
      android:layout_height="wrap_content">

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

      <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:layout_height="match_parent">

      <ProgressBar
         android:id="@+id/ht_agreement_pro"
         android:layout_width="68dp"
         android:indeterminateDrawable="@drawable/ht_loading_progressbar"
         android:layout_centerInParent="true"
         android:visibility="gone"
         android:layout_height="68dp" />

      <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:layout_height="match_parent">

         <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:text="" />

         </LinearLayout>
      </ScrollView>
   </RelativeLayout>

</LinearLayout>