123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical" >
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="14dp"
- android:layout_marginBottom="19dp"
- android:layout_marginLeft="18dp"
- android:layout_marginRight="13dp"
- android:orientation="horizontal"
- >
- <TextView
- android:layout_width="0dp"
- android:layout_weight="1"
- android:layout_height="wrap_content"
- android:text="@string/x7_voucher_collection"
- android:textColor="#12cdb0"
- android:textSize="16dp"
- />
- <TextView
- android:id="@+id/tv_user_contact"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:gravity="center"
- android:layout_gravity="center_vertical"
- android:text="@string/x7_chat_customer"
- android:drawableLeft="@drawable/x7_chat"
- android:background="@drawable/x7_tv_account_note_bg"
- android:paddingLeft="13dp"
- android:paddingRight="13dp"
- android:paddingTop="7dp"
- android:paddingBottom="7dp"
- android:drawablePadding="8dp"
- android:textColor="#12cdb0"
- android:textSize="10dp" />
- <TextView
- android:id="@+id/tv_un_read_msg"
- android:layout_width="wrap_content"
- android:layout_height="10dp"
- android:layout_marginLeft="-6dp"
- android:background="@drawable/x7_un_read_msg"
- android:layout_gravity="center_vertical"
- android:gravity="center"
- android:maxEms="3"
- android:minWidth="10dp"
- android:minEms="2"
- android:textColor="@color/x7_white"
- android:textSize="8sp"
- android:visibility="gone"
- />
- </LinearLayout>
- <GridView
- android:id="@+id/gv_voucher_list"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_marginLeft="26dp"
- android:layout_marginRight="20dp"
- android:layout_centerHorizontal="true"
- android:layout_marginTop="5dp"
- android:numColumns="2"
- xmlns:tools="http://schemas.android.com/tools"
- tools:listitem="@layout/x7_sdk_item_money_ticket_ll_2"
- android:listSelector="@android:color/transparent"
- android:scrollbars="none"
- android:verticalSpacing="13dp"
- android:horizontalSpacing="15dp"
- >
- </GridView>
- </LinearLayout>
|