How to Change ActionBar Title of an Activity in App | Android Studio Tutorials 2022

How to Change ActionBar Title of an Activity in App | Android Studio Tutorials 2022




Full tutorial is given below. Dear Viewer we are working hard to maintain this website. We doesn't want any think from you. Its just a humble request If you thinks that this posts helps you please share this post with your friends.

Change Actionbar title of an activity programmatically in Android Studio






activity_main.xml


<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center"
    tools:context=".MainActivity">

    <TextView
        android:text="Hello World!"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

</LinearLayout>








MainActivity.java


package com.usmtip.myapplication;

import android.os.Bundle;
import androidx.appcompat.app.ActionBar;
import androidx.appcompat.app.AppCompatActivity;



public class MainActivity extends AppCompatActivity {


    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        //set actionbar title
        ActionBar actionBar = getSupportActionBar();
        actionBar.setTitle("New Title");

    }
}










All Server Links to Download This File:



Previous Post
Next Post

post written by:

0 Comments: