片段中的ActionBar CustomView可见性

时间:2014-02-13 11:27:43

标签: android android-fragments actionbarsherlock

我正在使用Sherlock动作栏,我有4个片段。我在第4个片段中使用了动作栏自定义视图。

    LayoutParams lp = new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT, Gravity.RIGHT | Gravity.CENTER_VERTICAL);
    View customNav = LayoutInflater.from(this.thisContext).inflate(R.layout.about_custom_view, null); // layout which contains your button.
    actionbar.setCustomView(customNav, lp);

    actionbar.setDisplayShowCustomEnabled(true);

    Button abouButton = (Button)customNav.findViewById(R.id.custom_view);

现在问题是自定义视图也出现在第3个片段中,尽管已设置

actionbar.setDisplayShowCustomEnabled(false);

请给我任何谅解。 感谢

0 个答案:

没有答案