我试图在Android中绑定TextVIEw的文本颜色.这是我的(截断的)xaml:
<TextVIEw androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" app:MvxBind=" Textcolor categoryTextcolor(category)"/>
其中categoryTextcolorValueConverter如下:
public class categoryTextcolorConverter : MvxValueConverter<Showcategory, color>{ protected overrIDe color Convert (Showcategory value, Type targettype, object parameter, System.Globalization.CultureInfo culture) { if (value == Showcategory.AllShows) { return color.Blue; } return color.Red; }}
调用转换器并按预期返回颜色,但文本颜色在TextVIEw上永远不会更改.我有一个类似的背景颜色绑定工作正常.我在这里看到In MvvmCross how do I do custom bind properties,也许我需要创建一个自定义绑定,但我找不到MvxBaseandroidTargetBinding.也许我需要从nuget安装一个单独的包?
解决方法:
你唯一需要做的就是安装MvvMCross color Plugin,因为Textcolor附带了它.它不包含在Core中.您发布的解决方案有效
见:https://github.com/MvvmCross/MvvmCross/wiki/MvvmCross-plugins#color
提示:如果使用MvxcolorValueConverter< Showcategory>,则无需编写特定于平台的ValueConvertes,您可以跨不同平台共享它.
public class categoryTextcolorConverter : MvxcolorValueConverter<Showcategory>{ protected overrIDe Mvxcolor Convert(Showcategory value, object parameter, CultureInfo culture) { if (value == Showcategory.AllShows) { return Mvxcolors.Blue; } return Mvxcolors.Red; }}
总结 以上是内存溢出为你收集整理的android – 如何绑定TextView的TextColor?全部内容,希望文章能够帮你解决android – 如何绑定TextView的TextColor?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)