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

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

问题描述

我怎样才能改变在code一个Android按钮控件的文本,而不是XML文件?

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天全站免登陆