简体   繁体   English

Android Studio如何更改顶部栏标题

[英]Android Studio how to change top bar title

I have this navigation-drawer with fragments. 我有这个带有片段的导航抽屉。 I want that every time I go to a section of this, change the title above in the image it says "Usario" 我希望每次我转到其中一部分时,在上面显示为“ Usario”的图片中更改标题

Image of Navigation Drawer 导航抽屉的图像

导航抽屉的图像

Everytime you change the fragment, set the title of your activity. 每次更改片段时,请设置活动的标题。

fragmentTransaction.commit();
setTitle("something");

尝试这个

((AppCompatActivity) getActivity()).getSupportActionBar().setTitle("Usario");

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM