123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="#00000000" >
-
- <RelativeLayout
- android:id="@+id/rel_title"
- android:layout_width="fill_parent"
- android:layout_height="56dp"
- android:layout_gravity="center_vertical"
- android:background="@drawable/bdp_paycenter_title_bg"
- android:gravity="center_vertical" >
- <ImageView
- android:id="@+id/img_back"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentLeft="true"
- android:layout_centerVertical="true"
- android:layout_marginLeft="8dp"
- android:paddingRight="52dp"
- android:src="@drawable/bdp_paycenter_btn_back_selector"
- android:contentDescription="@string/bdp_image" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerHorizontal="true"
- android:layout_centerVertical="true"
- android:layout_gravity="center_vertical"
- android:text="@string/bdp_task_list_title"
- android:textColor="#ffffff"
- android:textSize="18sp" />
- <ImageView
- android:id="@+id/img_close"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentRight="true"
- android:layout_centerVertical="true"
- android:layout_marginRight="4dp"
- android:paddingLeft="50dp"
- android:src="@drawable/bdp_paycenter_btn_close_selector"
- android:contentDescription="@string/bdp_image" />
- </RelativeLayout>
-
- <FrameLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_below="@id/rel_title"
- android:orientation="vertical"
- android:background="@drawable/bdp_paycenter_dialog_bottom_bg">
- <!-- 加载中 -->
- <LinearLayout
- android:id="@+id/lin_loading"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:gravity="center"
- android:orientation="horizontal"
- android:visibility="gone" >
-
- <ProgressBar
- android:layout_width="25dp"
- android:layout_height="25dp"
- android:layout_marginRight="6dp"
- android:indeterminateDrawable="@drawable/bdp_paycenter_progress_loading_anim" />
-
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:gravity="center"
- android:text="@string/bdp_paycenter_tv_string_loading"
- android:textColor="@android:color/black"
- android:textSize="16sp" />
- </LinearLayout>
- <!-- 空值提示 -->
- <LinearLayout
- android:id="@+id/lin_empty"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:gravity="center"
- android:orientation="vertical">
-
- <!-- android:src="@drawable/bdp_task_icon_empty" -->
- <ImageView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:contentDescription="@string/bdp_image"
- />
-
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:paddingTop="23dip"
- android:text="@string/bdp_task_list_empty"
- android:textSize="15sp"
- android:textColor="#bebebe"
- />
- </LinearLayout>
-
- </FrameLayout>
- </RelativeLayout>
|