假设我有两个片段A和B,它们具有相同的自定义ActionBar。
A更改ActionBar的标题(覆盖onResume()):
// This is the TextView of the title of my custom action bar.
TextView tvTitle = . . .;
tvTitle.setText("FRAGMENT A);
向Backstack添加B;
B更改ActionBar的标题(覆盖onResume()):
// This is the TextView of the title of my custom action bar.
TextView tvTitle = . . .;
tvTitle.setText("FRAGMENT B);
用户按后退按钮返回片段A。
片段A现在具有片段B的标题。
如何避免?