123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <?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:layout_margin="18dp"
- android:background="@drawable/bdp_bg_white_round"
- android:gravity="center_horizontal"
- android:orientation="vertical" >
- <TextView
- android:id="@+id/txtTitle"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginBottom="17dp"
- android:text="@string/bdp_tips"
- android:textColor="@color/bdp_deep_gray"
- android:textSize="14sp"
- android:visibility="gone" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center"
- android:orientation="vertical" >
- <!-- 内容文字 -->
- <TextView
- android:id="@+id/txtContent"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginBottom="25dp"
- android:layout_marginLeft="15dp"
- android:layout_marginRight="15dp"
- android:layout_marginTop="40dp"
- android:text="您的游戏存在安全风险,请使用官方安装程序,以免造成损失。"
- android:textColor="@color/bdp_deep_gray"
- android:textSize="16sp" />
- <View
- android:layout_width="match_parent"
- android:layout_height="1px"
- android:background="#cccccc" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal" >
- <!-- 按钮A -->
- <Button
- android:id="@+id/btnA"
- android:layout_width="0dip"
- android:layout_height="56dp"
- android:layout_weight="1"
- android:background="@drawable/bdp_color_white__without_corners_selector"
- android:onClick="click"
- android:textColor="#cfcfcf"
- android:textSize="16sp"
- android:visibility="visible" />
- <!-- 按钮B -->
- <View
- android:id="@+id/temp_line"
- android:layout_width="1px"
- android:layout_height="match_parent"
- android:layout_marginBottom="15dp"
- android:layout_marginTop="15dp"
- android:background="#c6c6c6" />
- <Button
- android:id="@+id/btnB"
- android:layout_width="0dip"
- android:layout_height="56dp"
- android:layout_marginLeft="12dip"
- android:layout_weight="1"
- android:background="@drawable/bdp_color_white__without_corners_selector"
- android:onClick="clickTwo"
- android:textColor="#e5006a"
- android:textSize="16sp"
- android:visibility="visible" />
- </LinearLayout>
- </LinearLayout>
- </LinearLayout>
|