在FadingActionBarHelper中使用setDisplayHomeAsUpEnabled时出错

时间:2014-10-27 08:55:57

标签: android

我想在我的应用FadingActionBar中实施to get the effects like latest Google play Music app. 以下是我如何使用FadingActionBar

   @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        FadingActionBarHelper helper = new FadingActionBarHelper()
            .actionBarBackground(R.drawable.ab_background)
            .headerLayout(R.layout.header)
            .contentLayout(R.layout.activity_listview);
        setContentView(helper.createView(this));
        helper.initActionBar(this);

在这里,我想使用setDisplayHomeAsUpEnabled(true);在actionBar中添加后退按钮 我在添加上面的代码时收到错误,说没有找到这样的方法。

我的问题是有没有办法添加setDisplayHomeAsUpEnabled(true); 如果没有,我们如何为FadingActionBar

添加后退按钮

1 个答案:

答案 0 :(得分:0)

我遇到了同样的问题但是因为我使用的是appcompat v7,所以你只需添加它。

 getSupportActionBar().setDisplayHomeAsUpEnabled(true);

或者

 getActionBar().setDisplayHomeAsUpEnabled(true);

希望有所帮助