I had writen a simple Android project. The main Activity has a gallery. Different pictures have differndt Activity. If I click one image, I would go to another Activity. The question is that how can I change the label, if the Activity change through the java code?
Asked
Active
Viewed 442 times
1 Answers
0
If you are just wanting to change the title bar, see this question ...
setTitle("My Title Is Better Than Your Title");
-
1or setTitle(R.string.yourresourcename) for better localization of the app ;) – Rainbowbreeze Sep 01 '11 at 13:46