123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/LinearLayout1"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:scrollbars="none">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_gravity="center"
- android:orientation="vertical">
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_horizontal"
- android:orientation="horizontal">
- <!-- 小号管理 -->
- <Button
- android:id="@+id/btn_small_account_manager"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:background="@drawable/x7_user_centre_mode_back_smallaccount"
- android:clickable="true"
- android:drawableTop="@drawable/x7_icon_user_manage_account01"
- android:focusable="true"
- android:gravity="center"
- android:minWidth="80dp"
- android:minHeight="80dp"
- android:paddingTop="18dp"
- android:text="@string/x7_user_account_manager"
- android:textColor="@color/x7_white" />
- <!-- 登录密码 -->
- <Button
- android:id="@+id/btn_person_center_login_password"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginLeft="6dp"
- android:layout_marginRight="6dp"
- android:layout_weight="1"
- android:background="@drawable/x7_user_centre_mode_back_loginpw"
- android:clickable="true"
- android:drawableTop="@drawable/x7_icon_user_password_un01"
- android:focusable="true"
- android:minWidth="80dp"
- android:minHeight="80dp"
- android:paddingTop="18dp"
- android:text="@string/x7_login_password"
- android:textColor="@color/x7_white" />
- <!-- 支付密码 -->
- <Button
- android:id="@+id/fragment_personcenter_paypassword"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:background="@drawable/x7_user_centre_mode_back_paypw"
- android:clickable="true"
- android:drawableTop="@drawable/x7_icon_user_pay_password_un01"
- android:focusable="true"
- android:minWidth="80dp"
- android:minHeight="80dp"
- android:paddingTop="18dp"
- android:text="@string/x7_pay"
- android:textColor="@color/x7_white" />
- </LinearLayout>
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_horizontal"
- android:layout_marginTop="8dp"
- android:orientation="horizontal">
- <!-- 手机号 -->
- <Button
- android:id="@+id/btn_person_center_phone"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:background="@drawable/x7_user_centre_mode_back_changephone"
- android:clickable="true"
- android:drawableLeft="@drawable/x7_icon_user_phone_binding_selected01"
- android:focusable="true"
- android:minWidth="123dp"
- android:minHeight="80dp"
- android:paddingLeft="20dp"
- android:text="@string/x7_phone_unbind"
- android:textColor="@color/x7_white" />
- <!-- 钱包 -->
- <Button
- android:id="@+id/btn_person_center_purse"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginLeft="6dp"
- android:layout_weight="1"
- android:background="@drawable/x7_user_centre_mode_back_wallet"
- android:clickable="true"
- android:drawableLeft="@drawable/x7_icon_user_wallet_un01"
- android:paddingLeft="20dp"
- android:focusable="true"
- android:minWidth="123dp"
- android:minHeight="80dp"
- android:text="@string/x7_purse"
- android:textColor="@color/x7_white" />
- </LinearLayout>
- </LinearLayout>
- </ScrollView>
|