Android 小部件:如何更改按钮的文本 [英] Android widget: How to change the text of a button

查看:23
本文介绍了Android 小部件:如何更改按钮的文本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在代码中而不是 XML 文件中更改 Android 按钮小部件的文本?

How can I change the text of an Android button widget within code and not the XML file?

推荐答案

我能够像这样更改按钮的文本:

I was able to change the button's text like this:

import android.widget.RemoteViews;

//grab the layout, then set the text of the Button called R.id.Counter:
RemoteViews remoteViews = new RemoteViews(getPackageName(), R.layout.my_layout);
remoteViews.setTextViewText(R.id.Counter, "Set button text here");

这篇关于Android 小部件:如何更改按钮的文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆