androidbuttontextwidgetsettext

How to change the text of a Button widget in Android?


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


Solution

  • 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");