Opt the transparency slider display logic with AnimatedVisibility and update the formatting in the Chinese string resource.
Signed-off-by: ShirkNeko <109797057+ShirkNeko@users.noreply.github.com>
This commit is contained in:
@@ -407,39 +407,45 @@ fun MoreSettingsScreen(navigator: DestinationsNavigator) {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
if (ThemeConfig.customBackgroundUri != null && showCardSettings) {
|
|
||||||
// 透明度 Slider
|
// 透明度 Slider
|
||||||
ListItem(
|
AnimatedVisibility(
|
||||||
leadingContent = { Icon(Icons.Filled.Opacity, null) },
|
visible = ThemeConfig.customBackgroundUri != null && showCardSettings,
|
||||||
headlineContent = { Text(stringResource(R.string.settings_card_alpha)) },
|
modifier = Modifier.fillMaxWidth().padding(horizontal = 24.dp)
|
||||||
supportingContent = {
|
) {
|
||||||
Slider(
|
ListItem(
|
||||||
value = cardAlpha,
|
leadingContent = { Icon(Icons.Filled.Opacity, null) },
|
||||||
onValueChange = { newValue ->
|
headlineContent = { Text(stringResource(R.string.settings_card_alpha)) },
|
||||||
cardAlpha = newValue
|
supportingContent = {
|
||||||
CardConfig.cardAlpha = newValue
|
Slider(
|
||||||
CardConfig.isCustomAlphaSet = true
|
value = cardAlpha,
|
||||||
prefs.edit { putBoolean("is_custom_alpha_set", true) }
|
onValueChange = { newValue ->
|
||||||
prefs.edit { putFloat("card_alpha", newValue) }
|
cardAlpha = newValue
|
||||||
},
|
CardConfig.cardAlpha = newValue
|
||||||
onValueChangeFinished = {
|
CardConfig.isCustomAlphaSet = true
|
||||||
CoroutineScope(Dispatchers.IO).launch {
|
prefs.edit { putBoolean("is_custom_alpha_set", true) }
|
||||||
saveCardConfig(context)
|
prefs.edit { putFloat("card_alpha", newValue) }
|
||||||
|
},
|
||||||
|
onValueChangeFinished = {
|
||||||
|
CoroutineScope(Dispatchers.IO).launch {
|
||||||
|
saveCardConfig(context)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
valueRange = 0f..1f,
|
||||||
|
colors = getSliderColors(cardAlpha, useCustomColors = true),
|
||||||
|
thumb = {
|
||||||
|
SliderDefaults.Thumb(
|
||||||
|
interactionSource = remember { MutableInteractionSource() },
|
||||||
|
thumbSize = DpSize(0.dp, 0.dp)
|
||||||
|
)
|
||||||
}
|
}
|
||||||
},
|
)
|
||||||
valueRange = 0f..1f,
|
}
|
||||||
colors = getSliderColors(cardAlpha, useCustomColors = true),
|
)
|
||||||
thumb = {
|
}
|
||||||
SliderDefaults.Thumb(
|
AnimatedVisibility(
|
||||||
interactionSource = remember { MutableInteractionSource() },
|
visible = ThemeConfig.customBackgroundUri != null && showCardSettings,
|
||||||
thumbSize = DpSize(0.dp, 0.dp)
|
modifier = Modifier.fillMaxWidth().padding(horizontal = 24.dp)
|
||||||
)
|
){
|
||||||
}
|
|
||||||
)
|
|
||||||
}
|
|
||||||
)
|
|
||||||
|
|
||||||
ListItem(
|
ListItem(
|
||||||
leadingContent = { Icon(Icons.Filled.DarkMode, null) },
|
leadingContent = { Icon(Icons.Filled.DarkMode, null) },
|
||||||
headlineContent = { Text(stringResource(R.string.theme_mode)) },
|
headlineContent = { Text(stringResource(R.string.theme_mode)) },
|
||||||
@@ -448,7 +454,7 @@ fun MoreSettingsScreen(navigator: DestinationsNavigator) {
|
|||||||
showThemeModeDialog = true
|
showThemeModeDialog = true
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
}
|
||||||
|
|
||||||
// 主题模式选择对话框
|
// 主题模式选择对话框
|
||||||
if (showThemeModeDialog) {
|
if (showThemeModeDialog) {
|
||||||
@@ -511,7 +517,7 @@ fun MoreSettingsScreen(navigator: DestinationsNavigator) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
@Composable
|
@Composable
|
||||||
private fun getSliderColors(cardAlpha: Float, useCustomColors: Boolean = false): SliderColors {
|
private fun getSliderColors(cardAlpha: Float, useCustomColors: Boolean = false): SliderColors {
|
||||||
|
|||||||
@@ -244,8 +244,8 @@
|
|||||||
<string name="kpm_invalid_file">KPM 文件无效</string>
|
<string name="kpm_invalid_file">KPM 文件无效</string>
|
||||||
<string name="kernel_patched">内核未进行补丁</string>
|
<string name="kernel_patched">内核未进行补丁</string>
|
||||||
<string name="kernel_not_enabled">内核未配置</string>
|
<string name="kernel_not_enabled">内核未配置</string>
|
||||||
<string name="kernel_module_notice">以下内核模块功能由KernelPatch开发,经过修改后加入SukiSU Ultra的内核模块功能</string>
|
<string name="kernel_module_notice">以下内核模块功能由 KernelPatch 开发,经过修改后加入 SukiSU Ultra 的内核模块功能</string>
|
||||||
<string name="home_ContributionCard_kernelsu">SukiSU Ultra展望</string>
|
<string name="home_ContributionCard_kernelsu">SukiSU Ultra展望</string>
|
||||||
<string name="home_click_to_ContributionCard_kernelsu">SukiSU Ultra未来将会成为一个相对独立的KSU分支,但是依然感谢官方KernelSU和MKSU等做出的贡献</string>
|
<string name="home_click_to_ContributionCard_kernelsu">SukiSU Ultra 未来将会成为一个相对独立的 KSU 分支,但是依然感谢官方 KernelSU 和 MKSU 等做出的贡献</string>
|
||||||
<string name="more_settings_simplicity_mode">简洁模式</string>
|
<string name="more_settings_simplicity_mode">简洁模式</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
|||||||
Reference in New Issue
Block a user