我必须覆盖什么方法才能知道片段何时返回可见?

时间:2014-09-26 09:46:16

标签: android android-fragments

假设我有两个片段A和B,它们具有相同的自定义ActionBar。

  1. A更改ActionBar的标题(覆盖onResume()):

    // This is the TextView of the title of my custom action bar.
    TextView tvTitle = . . .; 
    tvTitle.setText("FRAGMENT A);
    
  2. 向Backstack添加B;

  3. B更改ActionBar的标题(覆盖onResume()):

    // This is the TextView of the title of my custom action bar.
    TextView tvTitle = . . .; 
    tvTitle.setText("FRAGMENT B);
    
  4. 用户按后退按钮返回片段A。

  5. 片段A现在具有片段B的标题。

  6. 如何避免?

0 个答案:

没有答案