LoginSignup
3
3

More than 5 years have passed since last update.

ActionbarActivityのタイトルの変え方

Posted at

メモする程の事ではないかもしれませんが、メモします。

ActionbarActivityのタイトルを変更したくなった時どうするかです。

getSupportActionBar().setTitle("テスト");

を追加すれば、簡単に変更ができます。

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

        getSupportActionBar().setHomeButtonEnabled(true);
        getSupportActionBar().setDisplayHomeAsUpEnabled(true);
        getSupportActionBar().setTitle("テスト");
    }

こんな感じでしょうか。

3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3