美文网首页
AppBarLayout 取消阴影效果

AppBarLayout 取消阴影效果

作者: 王家匀匀 | 来源:发表于2020-11-19 20:30 被阅读0次

    app:elevation="0dp"
    注意这里不是 android:elevation="0dp"
    一般新增的属性,都是app 开头。
    属性无效的时候,首先检查 命名空间对不对(比如android写成了tools),确定写法正确 再排除 该属性无效。

    <com.google.android.material.appbar.AppBarLayout
               android:id="@+id/appbarLayout"
               android:layout_width="match_parent"
               android:layout_height="wrap_content"
               android:background="@color/transparent"
               app:elevation="0dp">
    

    相关文章

      网友评论

          本文标题:AppBarLayout 取消阴影效果

          本文链接:https://www.haomeiwen.com/subject/kgjliktx.html