I have created an Activity and declared in Manifest file. But I would like to re-use the same Activity for other purpose.
I have the same problem, Try this in onCreate it's work for me!
onCreate
public class YourActivityName extends Activity { @Override public void onCreate(Bundle savedInstanceState) { setTitle("Your Title"); } }