1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="horizontal"
- android:layout_width="@dimen/layx434"
- android:layout_height="@dimen/layy56"
- android:layout_gravity="center"
- android:baselineAligned="false">
- <ImageView
- android:contentDescription="@string/app_name"
- android:layout_width="@dimen/layx434"
- android:layout_height="@dimen/layy56"
- android:src="@drawable/shop_list_item_bg"
- android:scaleType="fitXY"
- />
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="@dimen/layy56"
- android:layout_marginLeft="@dimen/layx15"
- android:orientation="horizontal"
- android:gravity="center">
- <TextView
- android:id="@+id/record_name"
- android:layout_width="@dimen/layx180"
- android:layout_height="wrap_content"
- android:textColor="#ffffff"
- android:gravity="left|center"/>
- <TextView
- android:id="@+id/record_time"
- android:layout_width="@dimen/layx100"
- android:layout_height="wrap_content"
- android:layout_marginLeft="@dimen/layx15"
- android:textColor="#ffffff"
- android:gravity="left|center"/>
- </LinearLayout>
- <ImageView
- android:contentDescription="@string/app_name"
- android:layout_width="@dimen/layx80"
- android:layout_height="@dimen/layy35"
- android:layout_marginTop="@dimen/layy9"
- android:layout_marginLeft="@dimen/layx329"
- android:background="@drawable/luck_msg_small_bg"
- />
- <TextView
- android:id="@+id/record_status"
- android:contentDescription="@string/app_name"
- android:layout_width="@dimen/layx80"
- android:layout_height="@dimen/layy35"
- android:layout_marginTop="@dimen/layy9"
- android:layout_marginLeft="@dimen/layx329"
- android:gravity="center"
- style="@style/shop_title_style"/>
- </RelativeLayout>
|