setElevation()无法在AppBarLayout上运行

时间:2017-07-09 14:24:36

标签: android toolbar android-appcompat

我有AppBarLayout,我希望在onCreate()方法中以编程方式将高程设置为0。如果我有这样的例子onCreate() ..

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    ButterKnife.bind(this);
    setSupportActionBar(_toolbar);
    _appBar.setElevation(0);
}

AppBarLayout提升不会改变。

但是,如果我添加延迟,例如400毫秒,则AppBarLayout高程会发生变化。

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    ButterKnife.bind(this);
    setSupportActionBar(_toolbar);
        Observable.just(_appBar)
        .delay(400, TimeUnit.MILLISECONDS)
        .observeOn(AndroidSchedulers.mainThread())
        .subscribe(new Consumer<AppBarLayout>() {
            @Override
            public void accept(AppBarLayout appBarLayout) throws Exception {
                appBarLayout.setElevation(0);
            }
        });
}

任何人都可以解释为什么会这样吗?以及我如何能够毫不拖延地解决这个问题。我也尝试过使用getSupportActionBar().setElevation(0);,并使用API​​ 24

1 个答案:

答案 0 :(得分:5)

解决!而不是设置高程,我使用:

StateListAnimator stateListAnimator = new StateListAnimator();
stateListAnimator.addState(new int[0], ObjectAnimator.ofFloat(view, "elevation", 0));
appBarLayout.setStateListAnimator(stateListAnimator);

请参阅以下答案以获取更详细的解释:

How to set the elevation of an AppBarLayout programmatically in the Android Support Library v24.0.0?