1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="@dimen/x7_addSmallAccount_width"
- android:layout_height="wrap_content"
- android:paddingBottom="20dp"
- android:orientation="vertical">
- <TextView
- android:id="@+id/tv_switch_account_title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="20dp"
- android:text="增加小號"
- android:textSize="18dp"
- android:layout_centerHorizontal="true"
- android:textColor="#12cdb0"
- />
- <TextView
- android:id="@+id/tv_switch_account_hint"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_below="@id/tv_switch_account_title"
- android:layout_centerHorizontal="true"
- android:layout_marginTop="10dp"
- android:paddingLeft="15dp"
- android:paddingRight="15dp"
- android:textColor="@color/x7_text_gray"
- android:textSize="14sp" />
- <LinearLayout
- android:id="@+id/rl_sure_cancel"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_below="@+id/tv_switch_account_hint"
- android:layout_centerHorizontal="true"
- android:layout_marginTop="20dp"
- android:orientation="horizontal"
- >
- <Button
- android:id="@+id/btn_sure_for_switch_account"
- android:layout_width="83dp"
- android:layout_height="34dp"
- android:background="@drawable/x7_btn_back_selected_2"
- android:text="@string/x7_sure_to_add"
- android:textColor="#fff"
- android:textSize="16dp"
- />
- <Button
- android:id="@+id/btn_cancel_for_switch_account"
- android:layout_width="83dp"
- android:layout_height="34dp"
- android:layout_marginLeft="10dp"
- android:background="@drawable/x7_edt_back_2"
- android:text="@string/x7_cancel"
- android:textColor="#fff"
- android:textSize="16dp"
- />
- </LinearLayout>
- </RelativeLayout>
|