gpt4 book ai didi

android - RadioButton 在带有浅色主题的 Android 10/11 上不可见

转载 作者:行者123 更新时间:2023-12-04 13:12:24 25 4
gpt4 key购买 nike

我们在 Xamarin Forms 中使用新的实验性单选按钮:
https://docs.microsoft.com/en-us/xamarin/xamarin-forms/user-interface/radiobutton
Xamarin.Forms 版本 - 4.8.0.1269
单选按钮在 Android 9 及更低版本的设备中完美运行。
但在 Android 10/11 上,如果手机主题设置为浅色主题,则单选按钮图标会丢失。
以下是分别来自深色和浅色主题的示例屏幕截图:
Dark theme on emulator
Light theme on Samsung device
这是为单选按钮编写的代码:

                    <StackLayout VerticalOptions="Start" 
HorizontalOptions="FillAndExpand">

<Label Text="Body temperature"
Style="{StaticResource BlackBoldLabelStyle}"
VerticalOptions="Start"
HorizontalOptions="StartAndExpand" />

<StackLayout VerticalOptions="Start"
Margin="0,10,0,0"
HorizontalOptions="FillAndExpand"
Orientation="Horizontal">
<StackLayout.GestureRecognizers>
<TapGestureRecognizer Command="{Binding OnBodyTempOption1Click}"/>
</StackLayout.GestureRecognizers>

<RadioButton
HorizontalOptions="Start"
VerticalOptions="Center"
IsChecked="{Binding IsBodyTempOption1Check}"/>

<Label Text="Less than 99.5 degree F / 37.5 degree C"
VerticalOptions="Center"
Style="{StaticResource DarkGrayLabelStyle}"
HorizontalOptions="StartAndExpand" />
</StackLayout>

<StackLayout VerticalOptions="Start"
Margin="0,5,0,0"
HorizontalOptions="FillAndExpand"
Orientation="Horizontal">
<StackLayout.GestureRecognizers>
<TapGestureRecognizer Command="{Binding OnBodyTempOption2Click}"/>
</StackLayout.GestureRecognizers>

<RadioButton
HorizontalOptions="Start"
VerticalOptions="Center"
IsChecked="{Binding IsBodyTempOption2Check}"/>

<Label Text="More than 99 degree F / 37 degree C"
VerticalOptions="Center"
Style="{StaticResource DarkGrayLabelStyle}"
HorizontalOptions="StartAndExpand" />
</StackLayout>
</StackLayout>
请帮助解决如何解决单选按钮可见性问题。

最佳答案

Xamarin.Fomrs 开发团队致力于 this issue您可以在 Android styles.xml 中应用以下解决方法设置以下属性:

<item name="android:colorControlNormal">#FF4081</item>
这会将颜色设置为 RadioButton圆圈。

关于android - RadioButton 在带有浅色主题的 Android 10/11 上不可见,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63712512/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com