4

我刚开始使用 android home 小部件进行编程,所以我可以从我的小部件提供程序将文本设置为 home 小部件中的 textview,但是当我想从中获取文本时,我没有理想。无法 findById() 和 getText()。有没有办法从小部件提供者那里获取主页小部件中的 textview 文本?或者告诉我如何从另一个活动中获得?

4

1 回答 1

2

她是示例代码。

TextView textValue = (TextView) layout.findViewById(R.id.labelValue);
String s = textValue.getText().toString();
textValue.setText("Welcome");
于 2012-06-27T09:57:04.657 回答