获取appWidget的Textview中显示的字符串值

发布于 2024-12-11 13:02:57 字数 245 浏览 0 评论 0原文

我有一个显示文本视图的 appWidget,其中的文本是通过 RemoteViews 从另一个活动设置的。现在我需要使用或获取此小部件中显示的文本。我该怎么做?

String text = context.getText(R.id.widgetVerse).toString();

给我“假”哈哈!虽然这是一次尝试...

顺便说一句,我需要通过 putExtra 将此字符串发送到另一个意图。

I have an appWidget which displays a text view, in which the text is set from another activity via RemoteViews. Now i need to use or get the text that is displayed in this widget. How can i do this?

String text = context.getText(R.id.widgetVerse).toString();

Gives me "false" lol! although that was a try...

By the way i need to send this string to another intent via putExtra.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

只想待在家 2024-12-18 13:02:57

试试这个。

字符串文本 = ((TextView) findViewById(R.id.widgetVerse)).getText().toString() ;

Try this.

String text = ((TextView) findViewById(R.id.widgetVerse)).getText().toString() ;

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文