144 lines
5.8 KiB
XML
144 lines
5.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/dialog_bg"
|
|
android:paddingStart="@dimen/dp10"
|
|
android:paddingEnd="@dimen/dp10"
|
|
android:orientation="vertical">
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="56dp">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerInParent="true"
|
|
android:text="@string/change_theme"
|
|
android:textColor="@color/body_txt_color"
|
|
android:textSize="18sp" />
|
|
|
|
<ImageView
|
|
android:layout_width="24dp"
|
|
android:layout_height="24dp"
|
|
android:id="@+id/colose_iv"
|
|
android:src="@mipmap/dialog_colose"
|
|
android:layout_centerVertical="true"
|
|
android:layout_alignParentEnd="true"/>
|
|
</RelativeLayout>
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/bg_ripple"
|
|
android:gravity="center_vertical"
|
|
android:id="@+id/gsxt_ly"
|
|
android:orientation="horizontal">
|
|
<com.xyz.babelive.ui.view.CircleImageView
|
|
android:layout_width="@dimen/dp32"
|
|
android:layout_height="@dimen/dp32"
|
|
app:es_shape_type="round"
|
|
android:src="@mipmap/sunmoon"/>
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="62dp"
|
|
android:layout_weight="1"
|
|
android:text="@string/follow_system"
|
|
android:gravity="center_vertical"
|
|
android:drawablePadding="@dimen/dp10"
|
|
android:layout_marginStart="10dp"
|
|
android:textColor="@color/body_txt_color"
|
|
android:textSize="16sp"
|
|
/>
|
|
<CheckBox
|
|
android:id="@+id/gsxt_switch"
|
|
style="@style/settings_item_checkBox"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:clickable="false"
|
|
android:button="@drawable/main_more_switch_msgtone_checkbtn"
|
|
android:checked="false" />
|
|
</LinearLayout>
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:background="@color/line_color"/>
|
|
<LinearLayout
|
|
android:id="@+id/qsms_ly"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/bg_ripple"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal">
|
|
<com.xyz.babelive.ui.view.CircleImageView
|
|
android:layout_width="@dimen/dp32"
|
|
android:layout_height="@dimen/dp32"
|
|
app:es_shape_type="round"
|
|
android:src="@mipmap/rjms"/>
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="62dp"
|
|
android:layout_weight="1"
|
|
android:text="@string/light"
|
|
android:gravity="center_vertical"
|
|
android:drawablePadding="@dimen/dp10"
|
|
android:layout_marginStart="10dp"
|
|
android:textColor="@color/body_txt_color"
|
|
android:textSize="16sp"
|
|
/>
|
|
<CheckBox
|
|
android:id="@+id/qsms_switch"
|
|
style="@style/settings_item_checkBox"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:clickable="false"
|
|
|
|
android:button="@drawable/main_more_switch_msgtone_checkbtn"
|
|
android:checked="false" />
|
|
</LinearLayout>
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:background="@color/line_color"/>
|
|
<LinearLayout
|
|
android:id="@+id/ssms_ly"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/bg_ripple"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal">
|
|
<com.xyz.babelive.ui.view.CircleImageView
|
|
android:layout_width="@dimen/dp32"
|
|
android:layout_height="@dimen/dp32"
|
|
app:es_shape_type="round"
|
|
android:src="@mipmap/yjms"/>
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="62dp"
|
|
android:layout_weight="1"
|
|
android:text="@string/dark"
|
|
android:gravity="center_vertical"
|
|
android:drawablePadding="@dimen/dp10"
|
|
android:layout_marginStart="10dp"
|
|
android:textColor="@color/body_txt_color"
|
|
android:textSize="16sp"
|
|
/>
|
|
<CheckBox
|
|
android:id="@+id/ssms_switch"
|
|
style="@style/settings_item_checkBox"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:clickable="false"
|
|
|
|
android:button="@drawable/main_more_switch_msgtone_checkbtn"
|
|
android:checked="false" />
|
|
</LinearLayout>
|
|
|
|
|
|
</LinearLayout>
|
|
</layout>
|