123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:background="#66333333"
- android:gravity="center"
- android:orientation="vertical"
- android:padding="15dip">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="15dip"
- android:text="@string/x7_hide_of_floating"
- android:textColor="@color/x7_text_green"
- android:textSize="18sp" />
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="15dip"
- android:orientation="horizontal">
- <CheckBox
- android:id="@+id/cb_suspension_hint"
- android:layout_width="30dip"
- android:layout_height="30dip"
- android:background="@null"
- android:button="@drawable/x7_change_float_cb_bg" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="15dip" android:text="@string/x7_no_longer_show_hint"
- android:textColor="@color/x7_white"
- android:textSize="18sp" />
- </LinearLayout>
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="20dip"
- android:layout_marginBottom="20dip"
- android:orientation="horizontal">
- <TextView
- android:id="@+id/tv_suspension_hint_cancel"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:background="@drawable/x7_change_float_cancel"
- android:clickable="true"
- android:paddingLeft="25dip"
- android:paddingTop="7dip"
- android:paddingRight="25dip"
- android:focusable="true" android:paddingBottom="7dip"
- android:text="@string/x7_cancel"
- android:textColor="@color/x7_white"
- android:textSize="16sp" />
- <TextView
- android:id="@+id/tv_suspension_hint_sure"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="30dip" android:background="@drawable/x7_change_xuanfu_ok"
- android:clickable="true"
- android:paddingLeft="25dip"
- android:paddingTop="7dip"
- android:paddingRight="25dip"
- android:focusable="true" android:paddingBottom="7dip"
- android:text="@string/x7_sure"
- android:textColor="@color/x7_white"
- android:textSize="16sp" />
- </LinearLayout>
- </LinearLayout>
|