我有 ActionBarActivity
和 NavigationDrawer
,并使用 support _ v7 Toolbar
作为 ActionBar。在我的一个片段工具栏有自定义视图。在其他片段中,Toolbar
应显示标题。
How get Toolbar
instance for customizing from fragments? I can get ActionBar with getActivity().getActionBar()
, but if I call setTitle()
for this instance ActionBar it do nothing.
UPD:
对我来说
((ActionBarActivity) getActivity()).getSupportActionBar().setTitle();
(正如工程师13先生所说)在第一次片段创建时不工作,因为我从 onHiddenChanged ()调用它。现在我向 onCreateView ()添加更多的一个,它工作得很好。