我想使用高程和設計庫將陰影添加到工具欄。佈局代碼類似於:高度和陰影錯誤的工具欄
<android.support.design.widget.CoordinatorLayout ... >
<android.support.design.widget.AppBarLayout ... >
<android.support.design.widget.CollapsingToolbarLayout ... >
<android.support.v7.widget.Toolbar
android:id="@+id/app_bar"
android:layout_width="match_parent"
android:layout_height="?actionBarSize"
app:contentInsetStart="16dp"
android:background="@color/colorPrimary"
android:elevation="16dp"
/>
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
完整的應用程序源代碼可在github上獲得。
問題是,工具欄高度或陰影不符合我的預期。如果您觀看下面的屏幕截圖,您可以注意到這個問題。
我需要做的是顯示藍色區域下面的陰影。
任何暗示非常讚賞。
投影可能來自您的高程。除此之外,我從來沒有使用過'CollapsingToolbarLayout',也沒有'AppBarLayout',所以我甚至都不知道自己的身高對你的身高沒有達到預期的效果。 – CommonsWare