51 lines
1.9 KiB
XML
51 lines
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<RelativeLayout
|
|
android:id="@+id/xr_protect"
|
|
android:layout_marginTop="@dimen/common_50dp"
|
|
style="@style/common_setting_card_style">
|
|
<TextView
|
|
android:id="@+id/tv_protect"
|
|
android:text="@string/setting_protect"
|
|
android:layout_centerVertical="true"
|
|
style="@style/setting_item_text"/>
|
|
<CheckBox
|
|
android:id="@+id/cb_protect"
|
|
android:checked="true"
|
|
android:layout_centerVertical="true"
|
|
style="@style/checkbox_style_setting"/>
|
|
</RelativeLayout>
|
|
<RelativeLayout
|
|
android:id="@+id/xr_auto_connect"
|
|
style="@style/common_setting_card_style">
|
|
<TextView
|
|
android:id="@+id/tv_auto_connect"
|
|
android:text="@string/setting_auto_connect"
|
|
style="@style/setting_item_text"/>
|
|
<ImageView
|
|
android:id="@+id/cb_auto"
|
|
android:background="@drawable/checkbox_on_xxx"
|
|
android:layout_centerVertical="true"
|
|
style="@style/checkbox_style_setting"/>
|
|
</RelativeLayout>
|
|
<RelativeLayout
|
|
android:id="@+id/xl_modify"
|
|
style="@style/common_setting_card_style">
|
|
<CheckBox
|
|
android:visibility="invisible"
|
|
android:checked="true"
|
|
android:layout_centerVertical="true"
|
|
style="@style/checkbox_style"/>
|
|
<ImageView
|
|
android:id="@+id/iv_phone"
|
|
android:layout_marginRight="@dimen/common_16dp"
|
|
style="@style/setting_arrows"/>
|
|
<TextView
|
|
android:text="@string/setting_modify"
|
|
style="@style/setting_item_text"/>
|
|
</RelativeLayout>
|
|
</LinearLayout>
|