How to set the elevation of AppBarLayout to 0

风流意气都作罢 提交于 2020-01-24 02:27:09

问题


My layout file is like :

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout        xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
...
android:elevation="0dp"
android:fitsSystemWindows="true">

<android.support.design.widget.AppBarLayout
    android:id="@+id/appbar"
    android:layout_width="match_parent"
    android:layout_height="256dp"
    android:fitsSystemWindows="true"
    android:elevation="0dp"
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

    <android.support.design.widget.CollapsingToolbarLayout
        android:id="@+id/collapsing_toolbar"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fitsSystemWindows="true"
        android:elevation="0dp"
        app:contentScrim="?attr/colorPrimary"
        app:expandedTitleMarginEnd="50dp"
        app:expandedTitleMarginStart="50dp"
        app:titleEnabled="false"
        app:layout_scrollFlags="scroll|exitUntilCollapsed">

        <android.support.v7.widget.Toolbar
            android:id="@+id/main_toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:elevation="0dp"
            app:layout_collapseMode="pin"
            app:layout_scrollFlags="scroll|enterAlways"
            app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />

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

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


<android.support.v7.widget.RecyclerView
    android:id="@+id/recyclerview_worthiness_detail"
    ...
    app:layout_behavior="@string/appbar_scrolling_view_behavior" />

<include layout="@layout/common_view" />

<com.yidoutang.app.widget.DetailAvatarView
    android:id="@+id/iv_header_worthiness_detail"
    android:layout_width="@dimen/header_size_datail"
    android:layout_height="@dimen/header_size_datail"
    android:clickable="true"
    android:elevation="0dp"
    app:backgroundTint="@color/fab_color_primary"
    app:border_color="@color/white"
    app:border_width="1dp"
    app:layout_anchor="@id/appbar"
    app:layout_anchorGravity="bottom|center_horizontal"
    app:layout_behavior="com.yidoutang.app.widget.behavior.AvatarBehavior"
    app:rippleColor="@android:color/darker_gray" />

<include layout="@layout/layout_fab" />

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

I set the android:elevation="0dp" to Toorbar , CoordinatorLayout and AppBarLayout, but when it closes, it still have the elevation.

Something like the image

how can I remove the elavation?


回答1:


Use app:elevation="0dp" to remove the elevation




回答2:


Instead of

android:elevation="0dp"

try

app:elevation="0dp"



回答3:


Changing android to app will work for you.

app:elevation="0dp"


来源:https://stackoverflow.com/questions/34527721/how-to-set-the-elevation-of-appbarlayout-to-0

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!