12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/grey_light_light_light">
- <android.support.design.widget.AppBarLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <com.shuishuo.app.common.views.BaseToolbar
- android:id="@+id/toolbar"
- android:layout_width="match_parent"
- android:layout_height="@dimen/action_bar_height"
- app:title="消息通知"
- app:left_text="返回"/>
- </android.support.design.widget.AppBarLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:padding="16dp"
- android:gravity="center_vertical"
- android:background="@color/white">
- <TextView
- android:layout_weight="7"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="声音"/>
- <Switch
- android:id="@+id/mine_notification_setting_sound_switch"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content" />
- </LinearLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="1dp"
- android:background="@color/grey_light_light"/>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:padding="16dp"
- android:gravity="center_vertical"
- android:background="@color/white">
- <TextView
- android:layout_weight="7"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="震动"/>
- <Switch
- android:id="@+id/mine_notification_setting_vibration_switch"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content" />
- </LinearLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="1dp"
- android:background="@color/grey_light_light"/>
- </LinearLayout>
|