获取appWidget的Textview中显示的字符串值
我有一个显示文本视图的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个。
字符串文本 = ((TextView) findViewById(R.id.widgetVerse)).getText().toString() ;
Try this.
String text = ((TextView) findViewById(R.id.widgetVerse)).getText().toString() ;