78 lines
3.0 KiB
XML
78 lines
3.0 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_clear_cache"
|
|
android:layout_marginTop="@dimen/common_50dp"
|
|
style="@style/common_setting_card_style">
|
|
<CheckBox
|
|
android:visibility="invisible"
|
|
android:checked="true"
|
|
android:layout_centerVertical="true"
|
|
style="@style/checkbox_style"/>
|
|
<TextView
|
|
android:id="@+id/tv_clear_cache"
|
|
android:layout_marginRight="@dimen/dp10"
|
|
android:text="@string/setting_clear"
|
|
android:elevation="@dimen/dp16"
|
|
style="@style/setting_item_text"/>
|
|
<TextView
|
|
android:id="@+id/tv_cache_size"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/dp10"
|
|
android:layout_marginRight="@dimen/common_12dp"
|
|
android:text="0 KB"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_centerVertical="true"
|
|
android:elevation="@dimen/dp16"
|
|
style="@style/setting_item_text"/>
|
|
</RelativeLayout>
|
|
<RelativeLayout
|
|
android:id="@+id/xr_wifi"
|
|
style="@style/common_setting_card_style">
|
|
<TextView
|
|
android:textColor="@color/txt_596F80"
|
|
android:id="@+id/tv_wifi"
|
|
android:text="@string/mobile_data_tips"
|
|
style="@style/setting_item_text"/>
|
|
<CheckBox
|
|
android:id="@+id/cb_wifi"
|
|
android:checked="true"
|
|
android:layout_centerVertical="true"
|
|
style="@style/checkbox_style_setting"/>
|
|
</RelativeLayout>
|
|
<RelativeLayout
|
|
android:id="@+id/xr_info"
|
|
style="@style/common_setting_card_style">
|
|
<TextView
|
|
android:id="@+id/tv_info"
|
|
android:text="@string/setting_info"
|
|
android:layout_centerVertical="true"
|
|
style="@style/setting_item_text"/>
|
|
<CheckBox
|
|
android:id="@+id/cb_info"
|
|
android:checked="true"
|
|
android:layout_centerVertical="true"
|
|
style="@style/checkbox_style_setting"/>
|
|
</RelativeLayout>
|
|
<RelativeLayout
|
|
android:id="@+id/user_experience_info"
|
|
style="@style/common_setting_card_style">
|
|
<TextView
|
|
android:text="@string/ubt_user_experience_title"
|
|
android:layout_centerVertical="true"
|
|
style="@style/setting_item_text"/>
|
|
<ImageView
|
|
android:id="@+id/cb_user_experience"
|
|
android:background="@drawable/checkbox_on_xxx"
|
|
android:layout_width="@dimen/common_46dp"
|
|
android:layout_height="@dimen/common_41dp"
|
|
android:layout_marginRight="@dimen/common_8dp"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_centerVertical="true"/>
|
|
</RelativeLayout>
|
|
</LinearLayout>
|