如何在应用启动后删除AppBar阴影

时间:2018-01-19 11:50:13

标签: android android-appbarlayout

我有抽屉布局,我需要删除特定页面(片段)的AppBar阴影。 为此,我使用此代码

fun setToolbarShadow(dropShadow: Boolean) {
    if (dropShadow) {
        ViewCompat.setElevation(appBar, Utils.dp2px(4, resources))
    } else {
        ViewCompat.setElevation(appBar, 0f)
    }
}

并且除了第一个片段之外,它适用于其他人。 我尝试将其放在活动的onCreate内,onStartonCreateViewonViewCreated的片段,但没有任何效果。 如何在创建活动和片段后正确设置?

编辑: 我用一个活动制作了简单的hello world应用程序来尝试它,这里是代码:

activity_main.xml中

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="cz.svobodaf.myapplication.MainActivity">

<android.support.design.widget.AppBarLayout
    android:id="@+id/appBar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
    app:popupTheme="@style/ThemeOverlay.AppCompat.Light">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
        app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>

    <FrameLayout
        android:id="@+id/top_nav_container"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" />

</android.support.design.widget.AppBarLayout>

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Hello World!"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintTop_toTopOf="parent" />

MainActivity.kt

class MainActivity : AppCompatActivity() {

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)
        setSupportActionBar(toolbar)

        ViewCompat.setElevation(appBar, 0f)
    }

    override fun onResume() {
        super.onResume()
        ViewCompat.setElevation(appBar, 0f)
    }
}

这在启动后也不起作用,但是当我锁定设备并再次解锁时,onResume被调用并且突然它起作用。 我需要知道如何在应用程序启动后将代码设置为高程。

1 个答案:

答案 0 :(得分:1)

我通过将AppBar轮廓设置为null来找到解决方案。

appBar.outlineProvider = null

但我无法弄清楚为什么海拔不起作用。看起来在所有启动方法都被称为-.-

之后设置了高程