Changing Android Intent Tittle using java code


If your application requires you to change the Tittle ( on the Action bar of a Intent) you can do so by using setTitle() function.

this.setTitle("Mortgage Calculator");

or,

IntentClassName.setTitle("Mortgage Calculator");

Example:

package com.code2care.backTitleExample;

public class ChangeTitle extends Activity {
	private TextView textview;
	private SwipeDetector sd;
	
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_change_title_demo);
		this.setTitle("Changed Title");
	}

	@Override
	public boolean onCreateOptionsMenu(Menu menu) {
		getMenuInflater().inflate(R.menu.change_title_demo, menu);
		return true;
	}
	
}

}
Copyright © Code2care 2024 | Privacy Policy | About Us | Contact Us | Sitemap