本文介绍了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小部件:如何更改按钮的文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-29 16:37