gpt4 book ai didi

android - Xamarin (Android) 中资源文件中按钮的 SetBackgroundColor

转载 作者:太空宇宙 更新时间:2023-11-03 13:14:04 25 4
gpt4 key购买 nike

我想设置Button 的背景色。我正在使用带有 Xamarin 的 Visual Studio。

在 Android 中我们使用:

Java 代码:

button_vstrong_fluorescence.setBackgroundColor(ContextCompat.getColor(InventoryActivity.this, R.color.linear_filter_background));

但在 Xamarin 中C# 代码。

button_vstrong_fluorescence.SetBackgroundColor(Android.Graphics.Color.ParseColor("#EBECEC"));

C# 中,上面的代码工作正常。

但每次我都想以静态的方式纠正这件事

Android.Graphics.Color.ParseColor("#EBECEC")

有什么方法可以从我的资源中设置#EBECEC这种颜色。

Color.ParseColor 需要 String 值。

我的尝试:

Android.Graphics.Color.ParseColor(Resource.Colors.linear_filter_background.ToString);

但它给我以下错误。

enter image description here

有没有办法从资源中设置背景颜色?

感谢任何帮助。

最佳答案

不是 Xamarin(或 C#)方面的专家,但像这样的东西应该可以获取您的颜色资源:

button_vstrong_fluorescence
.SetBackgroundColor(new Android.Graphics.Color(
ContextCompat.GetColor(this, Resource.Color.linear_filter_background))
);

关于android - Xamarin (Android) 中资源文件中按钮的 SetBackgroundColor,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39343019/

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