本文介绍了有没有一种简单的方法可以删除应用小部件中的文本?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想知道是否有一种简单的方法可以在 Android 的应用小部件中删除文本.在正常活动中,使用 textview 标志非常简单:
I was wondering if there is an easy way to strike text within an app widget in Android. In a normal activity, it is pretty easy, using textview flags:
textView.setPaintFlags(textView.getPaintFlags() | Paint.STRIKE_THRU_TEXT_FLAG);
但由于在应用小部件中,我只能使用远程视图...我不知道这是否可能
But since in an app widget, I can use only remoteviews... I do not know if this is possible
有人知道吗?
谢谢!
推荐答案
你可以这样用:
remoteviews.setInt(R.id.YourTextView, "setPaintFlags", Paint.STRIKE_THRU_TEXT_FLAG | Paint.ANTI_ALIAS_FLAG);
当然,您也可以从 android.graphics.Paint 类中添加其他标志.
Of course you can also add other flags from the android.graphics.Paint class.
这篇关于有没有一种简单的方法可以删除应用小部件中的文本?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!