其他分享
首页 > 其他分享> > Xamarin(Android)中资源文件中的Button的SetBackgroundColor

Xamarin(Android)中资源文件中的Button的SetBackgroundColor

作者:互联网

我想设置按钮的背景色.我正在将Visual Studio与Xamarin一起使用.

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))
    );

标签:xamarin-android,button,android-resources,android
来源: https://codeday.me/bug/20191026/1938586.html