-3

How can I set a custom title for my action bar/toolbar ?

I am using android:theme="@style/AppTheme.NoActionBar".

Stefano Sansone
  • 2,377
  • 7
  • 20
  • 39
Codist
  • 737
  • 8
  • 23

1 Answers1

1

If you set AppTheme.NoActionBar I think you're using a toolbar.

In your activity :

setSupportActionBar(findViewById(R.id.my_toolbar))
supportActionBar?.title = "My Title"
Stefano Sansone
  • 2,377
  • 7
  • 20
  • 39