|
|
|
@ -11,6 +11,7 @@
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:textColor="?android:textColorTertiary"
|
|
|
|
|
android:textSize="@dimen/medium_font_size"
|
|
|
|
@ -20,127 +21,170 @@
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="@string/activity_appearance_themes_category"/>
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/theme_option_classic_dark"
|
|
|
|
|
android:background="@drawable/preference_top"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:paddingHorizontal="@dimen/large_spacing"
|
|
|
|
|
android:paddingVertical="@dimen/medium_spacing"
|
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
<ImageView
|
|
|
|
|
android:theme="@style/Classic.Dark"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:src="@drawable/ic_themepreview"/>
|
|
|
|
|
<TextView
|
|
|
|
|
android:textAppearance="@android:style/TextAppearance.DeviceDefault.Medium"
|
|
|
|
|
android:lines="1"
|
|
|
|
|
android:textSize="16sp"
|
|
|
|
|
android:text="@string/classic_dark_theme_name"
|
|
|
|
|
android:padding="@dimen/medium_spacing"
|
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
<RadioButton
|
|
|
|
|
android:id="@+id/theme_radio_classic_dark"
|
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
android:layout_margin="@dimen/small_spacing"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/theme_option_classic_light"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:background="@drawable/preference_middle"
|
|
|
|
|
android:paddingHorizontal="@dimen/large_spacing"
|
|
|
|
|
android:paddingVertical="@dimen/small_spacing"
|
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
<ImageView
|
|
|
|
|
android:theme="@style/Classic.Light"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:src="@drawable/ic_themepreview"/>
|
|
|
|
|
<TextView
|
|
|
|
|
android:textAppearance="@android:style/TextAppearance.DeviceDefault.Medium"
|
|
|
|
|
android:textSize="16sp"
|
|
|
|
|
android:lines="1"
|
|
|
|
|
android:text="@string/classic_light_theme_name"
|
|
|
|
|
android:padding="@dimen/medium_spacing"
|
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
<RadioButton
|
|
|
|
|
android:id="@+id/theme_radio_classic_light"
|
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
android:layout_margin="@dimen/small_spacing"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/theme_option_ocean_dark"
|
|
|
|
|
<androidx.cardview.widget.CardView
|
|
|
|
|
app:cardElevation="0dp"
|
|
|
|
|
app:cardCornerRadius="@dimen/dialog_corner_radius"
|
|
|
|
|
android:layout_marginHorizontal="@dimen/medium_spacing"
|
|
|
|
|
app:cardBackgroundColor="?colorSettingsBackground"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:background="@drawable/preference_middle"
|
|
|
|
|
android:paddingHorizontal="@dimen/large_spacing"
|
|
|
|
|
android:paddingVertical="@dimen/medium_spacing"
|
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
<ImageView
|
|
|
|
|
android:theme="@style/Ocean.Dark"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:src="@drawable/ic_themepreview"/>
|
|
|
|
|
<TextView
|
|
|
|
|
android:textAppearance="@android:style/TextAppearance.DeviceDefault.Medium"
|
|
|
|
|
android:textSize="16sp"
|
|
|
|
|
android:lines="1"
|
|
|
|
|
android:text="@string/ocean_dark_theme_name"
|
|
|
|
|
android:padding="@dimen/medium_spacing"
|
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
<RadioButton
|
|
|
|
|
android:id="@+id/theme_radio_ocean_dark"
|
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
android:layout_margin="@dimen/small_spacing"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/theme_option_ocean_light"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:background="@drawable/preference_bottom"
|
|
|
|
|
android:paddingHorizontal="@dimen/large_spacing"
|
|
|
|
|
android:paddingTop="@dimen/medium_spacing"
|
|
|
|
|
android:paddingBottom="@dimen/large_spacing"
|
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
<ImageView
|
|
|
|
|
android:theme="@style/Ocean.Light"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:src="@drawable/ic_themepreview"/>
|
|
|
|
|
<TextView
|
|
|
|
|
android:textAppearance="@android:style/TextAppearance.DeviceDefault.Medium"
|
|
|
|
|
android:textSize="16sp"
|
|
|
|
|
android:lines="1"
|
|
|
|
|
android:text="@string/ocean_light_theme_name"
|
|
|
|
|
android:padding="@dimen/medium_spacing"
|
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
<RadioButton
|
|
|
|
|
android:id="@+id/theme_radio_ocean_light"
|
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
android:layout_margin="@dimen/small_spacing"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/theme_option_classic_dark"
|
|
|
|
|
android:addStatesFromChildren="true"
|
|
|
|
|
android:background="?selectableItemBackground"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:paddingHorizontal="@dimen/small_spacing"
|
|
|
|
|
android:paddingVertical="@dimen/small_spacing"
|
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
<ImageView
|
|
|
|
|
android:theme="@style/Classic.Dark"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:src="@drawable/ic_themepreview"/>
|
|
|
|
|
<TextView
|
|
|
|
|
android:textAppearance="@android:style/TextAppearance.DeviceDefault.Medium"
|
|
|
|
|
android:lines="1"
|
|
|
|
|
android:textSize="16sp"
|
|
|
|
|
android:text="@string/classic_dark_theme_name"
|
|
|
|
|
android:padding="@dimen/medium_spacing"
|
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
<RadioButton
|
|
|
|
|
android:id="@+id/theme_radio_classic_dark"
|
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
android:layout_margin="@dimen/small_spacing"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
<View
|
|
|
|
|
android:alpha="0.15"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="1dp"
|
|
|
|
|
android:background="?android:textColorPrimary"/>
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/theme_option_classic_light"
|
|
|
|
|
android:addStatesFromChildren="true"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:background="?selectableItemBackground"
|
|
|
|
|
android:paddingHorizontal="@dimen/small_spacing"
|
|
|
|
|
android:paddingVertical="@dimen/small_spacing"
|
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
<ImageView
|
|
|
|
|
android:theme="@style/Classic.Light"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:src="@drawable/ic_themepreview"/>
|
|
|
|
|
<TextView
|
|
|
|
|
android:textAppearance="@android:style/TextAppearance.DeviceDefault.Medium"
|
|
|
|
|
android:textSize="16sp"
|
|
|
|
|
android:lines="1"
|
|
|
|
|
android:text="@string/classic_light_theme_name"
|
|
|
|
|
android:padding="@dimen/medium_spacing"
|
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
<RadioButton
|
|
|
|
|
android:id="@+id/theme_radio_classic_light"
|
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
android:layout_margin="@dimen/small_spacing"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
<View
|
|
|
|
|
android:alpha="0.15"
|
|
|
|
|
android:layout_marginHorizontal="@dimen/medium_spacing"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="1dp"
|
|
|
|
|
android:background="?android:textColorPrimary"/>
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/theme_option_ocean_dark"
|
|
|
|
|
android:addStatesFromChildren="true"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:background="?selectableItemBackground"
|
|
|
|
|
android:paddingHorizontal="@dimen/small_spacing"
|
|
|
|
|
android:paddingVertical="@dimen/small_spacing"
|
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
<ImageView
|
|
|
|
|
android:theme="@style/Ocean.Dark"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:src="@drawable/ic_themepreview"/>
|
|
|
|
|
<TextView
|
|
|
|
|
android:textAppearance="@android:style/TextAppearance.DeviceDefault.Medium"
|
|
|
|
|
android:textSize="16sp"
|
|
|
|
|
android:lines="1"
|
|
|
|
|
android:text="@string/ocean_dark_theme_name"
|
|
|
|
|
android:padding="@dimen/medium_spacing"
|
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
<RadioButton
|
|
|
|
|
android:id="@+id/theme_radio_ocean_dark"
|
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
android:layout_margin="@dimen/small_spacing"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
<View
|
|
|
|
|
android:alpha="0.15"
|
|
|
|
|
android:layout_marginHorizontal="@dimen/medium_spacing"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="1dp"
|
|
|
|
|
android:background="?android:textColorPrimary"/>
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/theme_option_ocean_light"
|
|
|
|
|
android:addStatesFromChildren="true"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:background="?selectableItemBackground"
|
|
|
|
|
android:paddingHorizontal="@dimen/small_spacing"
|
|
|
|
|
android:paddingVertical="@dimen/small_spacing"
|
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
<ImageView
|
|
|
|
|
android:theme="@style/Ocean.Light"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:src="@drawable/ic_themepreview"/>
|
|
|
|
|
<TextView
|
|
|
|
|
android:textAppearance="@android:style/TextAppearance.DeviceDefault.Medium"
|
|
|
|
|
android:textSize="16sp"
|
|
|
|
|
android:lines="1"
|
|
|
|
|
android:text="@string/ocean_light_theme_name"
|
|
|
|
|
android:padding="@dimen/medium_spacing"
|
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
<RadioButton
|
|
|
|
|
android:id="@+id/theme_radio_ocean_light"
|
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
android:layout_margin="@dimen/small_spacing"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
</androidx.cardview.widget.CardView>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:textColor="?android:textColorTertiary"
|
|
|
|
|
android:textSize="@dimen/medium_font_size"
|
|
|
|
@ -208,8 +252,8 @@
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="horizontal"
|
|
|
|
|
android:layout_marginVertical="@dimen/medium_spacing"
|
|
|
|
|
android:layout_marginHorizontal="@dimen/large_spacing">
|
|
|
|
|
android:layout_marginVertical="@dimen/small_spacing"
|
|
|
|
|
android:layout_marginHorizontal="@dimen/small_spacing">
|
|
|
|
|
<View
|
|
|
|
|
android:id="@+id/accent_green"
|
|
|
|
|
android:background="@drawable/padded_circle_tintable"
|
|
|
|
@ -270,29 +314,39 @@
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="@string/activity_appearance_follow_system_category"/>
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:padding="@dimen/medium_spacing"
|
|
|
|
|
<androidx.cardview.widget.CardView
|
|
|
|
|
app:cardElevation="0dp"
|
|
|
|
|
android:elevation="0dp"
|
|
|
|
|
app:cardBackgroundColor="?colorSettingsBackground"
|
|
|
|
|
app:cardCornerRadius="@dimen/dialog_corner_radius"
|
|
|
|
|
android:layout_margin="@dimen/medium_spacing"
|
|
|
|
|
android:layout_marginBottom="@dimen/massive_spacing"
|
|
|
|
|
android:background="@drawable/preference_single"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:gravity="center">
|
|
|
|
|
<TextView
|
|
|
|
|
android:textColor="?android:textColorPrimary"
|
|
|
|
|
android:textStyle="bold"
|
|
|
|
|
android:textSize="@dimen/medium_font_size"
|
|
|
|
|
android:paddingHorizontal="@dimen/large_spacing"
|
|
|
|
|
android:paddingVertical="@dimen/small_spacing"
|
|
|
|
|
android:text="@string/activity_appearance_follow_system_explanation"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/system_settings_switch_holder"
|
|
|
|
|
android:background="?selectableItemBackground"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_weight="1"/>
|
|
|
|
|
<androidx.appcompat.widget.SwitchCompat
|
|
|
|
|
android:id="@+id/system_settings_switch"
|
|
|
|
|
android:paddingHorizontal="@dimen/large_spacing"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
android:addStatesFromChildren="true"
|
|
|
|
|
android:gravity="center">
|
|
|
|
|
<TextView
|
|
|
|
|
android:textColor="?android:textColorPrimary"
|
|
|
|
|
android:textStyle="bold"
|
|
|
|
|
android:textSize="@dimen/medium_font_size"
|
|
|
|
|
android:paddingHorizontal="@dimen/large_spacing"
|
|
|
|
|
android:paddingVertical="@dimen/small_spacing"
|
|
|
|
|
android:text="@string/activity_appearance_follow_system_explanation"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_weight="1"/>
|
|
|
|
|
<com.google.android.material.switchmaterial.SwitchMaterial
|
|
|
|
|
android:id="@+id/system_settings_switch"
|
|
|
|
|
android:paddingHorizontal="@dimen/large_spacing"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
</androidx.cardview.widget.CardView>
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
</ScrollView>
|