12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <?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="214dp"
- android:orientation="vertical" >
- <include layout="@layout/push_notification_normal" />
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="150dp" >
- <ImageView
- android:id="@+id/push_notif_big_color"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@android:color/white" />
- <ImageView
- android:id="@+id/push_notif_big_image"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_alignParentTop="true"
- android:layout_marginBottom="3dp"
- android:layout_marginLeft="2dp"
- android:layout_marginRight="2dp"
- android:scaleType="fitXY"
- android:src="@drawable/push_sys_notify" />
- <RelativeLayout
- android:id="@+id/push_notif_big_btn_layout"
- android:layout_width="match_parent"
- android:layout_height="40dp"
- android:layout_alignParentBottom="true" >
- <Button
- android:id="@+id/push_notif_big_btn"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_alignParentBottom="true"
- android:background="#a0000000"
- android:gravity="center" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:gravity="center"
- android:orientation="horizontal" >
- <ImageView
- android:id="@+id/push_notif_big_btn_image"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:background="#00000000"
- android:src="@android:drawable/stat_sys_download" />
- <TextView
- android:id="@+id/push_notif_big_download_btn_text"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:paddingLeft="10dp"
- android:text="有奖下载" />
- </LinearLayout>
- </RelativeLayout>
- </RelativeLayout>
- </LinearLayout>
|