I have created an Activity and declared in Manifest file. But I would like to re-use the same Activity for other purpose.
public class YourActivity extends Activity { @Override public void onCreate(Bundle savedInstanceState) { setTitle(R.string.your_title); setContentView(R.layout.main); } }