Android: programmatically change the application label?
I mostly use this to change actionBar's text pragmatically in onCreate() method....very easy!
getSupportActionBar().setTitle("yourString");
That is read-only, AFAIK.
If your objective is to change the title bar of your activities, you can call setTitle()
.