ht_dialog_coupon.xml 3.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:orientation="vertical"
   android:layout_height="wrap_content">

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

      <TextView
         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"
      style="@style/ht_content_style"
      android:layout_height="match_parent">

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

         <FrameLayout
            android:layout_width="match_parent"
            android:layout_weight="1"
            android:layout_height="match_parent">

            <ProgressBar
               android:id="@+id/ht_coupon_center_pro"
               android:layout_width="wrap_content"
               android:layout_gravity="center"
               android:indeterminateDrawable="@drawable/ht_loading_progressbar"
               android:layout_height="wrap_content" />

            <ListView
               android:id="@+id/ht_coupon_center_lv"
               android:layout_width="match_parent"
               android:layout_height="wrap_content"
               android:padding="2dp"
               android:cacheColorHint="#00000000"
               android:divider="@color/ht_transparent"
               android:dividerHeight="6dp"
               android:fadingEdge="none"
               android:fadingEdgeLength="0dp"
               android:layout_marginBottom="15dp"
               android:listSelector="#00000000" />

            <ImageView
               android:id="@+id/ht_coupon_center_nothing"
               android:layout_width="80dp"
               android:layout_height="80dp"
               android:visibility="invisible"
               android:background="@drawable/ht_icon_exit"
               android:layout_gravity="center" />
         </FrameLayout>

         <RelativeLayout
            android:layout_width="match_parent"
            android:layout_marginVertical="5dp"
            android:layout_height="wrap_content">

            <TextView
               android:id="@+id/ht_coupon_center_tips"
               android:layout_width="wrap_content"
               android:layout_centerInParent="true"
               android:gravity="center_vertical"
               android:text="关注公众号即可领取更多优惠大礼包哟!"
               android:layout_height="wrap_content" />
         </RelativeLayout>
      </LinearLayout>
   </RelativeLayout>
</LinearLayout>