12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="278dp"
- android:layout_height="wrap_content"
- android:background="@drawable/bdp_bg_white_round"
- android:minHeight="165dp"
- android:orientation="vertical">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center_horizontal"
- android:minHeight="109dp"
- android:orientation="vertical" >
- <!-- 结果类型 -->
- <TextView
- android:id="@+id/txt_type"
- android:layout_marginTop="25dp"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/bdp_paycenter_pay_result_notify_submit"
- android:textColor="#333333"
- android:textSize="18sp" />
- <!-- 提示文字 -->
- <TextView
- android:id="@+id/txt_tip"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginBottom="15dp"
- android:layout_marginTop="15dp"
- android:paddingLeft="20dp"
- android:paddingRight="20dp"
- android:text="@string/bdp_paycenter_pay_result_notify_fail_cancel_tip"
- android:textColor="#ff666666"
- android:textSize="14sp" />
- <!-- 返利商品 -->
- <TextView
- android:id="@+id/txt_activity"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginBottom="5dp"
- android:gravity="center_horizontal"
- android:paddingLeft="20dp"
- android:paddingRight="20dp"
- android:visibility="gone"
- android:textColor="#ff333333"
- android:textSize="14sp" />
- </LinearLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="56dp"
- android:orientation="vertical" >
- <View
- android:layout_width="match_parent"
- android:layout_height="1px"
- android:background="#cccccc" />
- <!-- 返回游戏按钮 -->
- <Button
- android:id="@+id/btn_back"
- android:layout_width="match_parent"
- android:layout_height="56dip"
- android:background="@drawable/bdp_color_white__without_corners_selector"
- android:text="@string/bdp_paycenter_pay_result_notify_return"
- android:textColor="#ffea0063"
- android:textSize="16sp"
- android:textStyle="bold" />
- </LinearLayout>
- </LinearLayout>
|