不推荐使用Xamarin Android SetBackgroundDrawable但不支持SetBackground()

前端之家收集整理的这篇文章主要介绍了不推荐使用Xamarin Android SetBackgroundDrawable但不支持SetBackground()前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
var textView = parentView.FindViewById<TextView>(Resource.Id.txt_chat_message);
GradientDrawable gd = new GradientDrawable();
gd.SetCornerRadius(10);
gd.SetColor(Color.Yellow);
textView.SetBackgroundDrawable(gd);

如上例所示,SetBackgroundDrawable允许我以编程方式控制颜色和半径.我看过SetBackgroundResouce,但我找不到一个明确的例子,因为它似乎只是将一个ID带到一个我无法改变的资源.

有人可以帮我提供一个替代方案,让我可以灵活地完成与上面的SetBackgroundDrawable完全相同的操作吗?

解决方法

使用 Background属性.通常,只要Android具有不带参数的getX / setX方法,Xamarin就会将其转换为名为X的C#样式属性.
var textView = parentView.FindViewById<TextView>(Resource.Id.txt_chat_message);
GradientDrawable gd = new GradientDrawable();
gd.SetCornerRadius(10);
gd.SetColor(Color.Yellow);
textView.Background = gd;
原文链接:https://www.f2er.com/android/316705.html

猜你在找的Android相关文章