如何从小部件(按钮,textView等)获取文本?

时间:2018-10-08 17:10:42

标签: android widget

我想从textView或按钮获取文本。我发现的方法是使用getText()函数用findViewById指定一个对象。但是,由于窗口小部件类扩展了提供程序,因此findViewById不可用。我不知道如何得到我想要的文本。

'公共类NewAppWidget扩展了活动{

static void updateAppWidget(Context context, AppWidgetManager appWidgetManager,
                            int appWidgetId) {

    // Activity extends

Button button = (Button)findViewById(R.Id.button);
int a = Integer.parseInt(button.getText().toString());
a++;
button.setText(Integer.toString(a));

}'

我只想获取TextView或Button的值并将其保存在变量中。

0 个答案:

没有答案