android– 如何绑定TextView的TextColor?

android– 如何绑定TextView的TextColor?,第1张

概述我试图在Android中绑定TextView的文本颜色.这是我的(截断的)xaml:<TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"app:MvxBind="TextColorCategoryTextColor(Category)"/>其中CategoryTe

我试图在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?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1116475.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-29
下一篇 2022-05-29

发表评论

登录后才能评论

评论列表(0条)

保存