我正在使用默认情况下不会显示 ActionBar 的主题:
<style name="AppTheme" parent="Theme.AppCompat">
<item name="windowActionBar">false</item>
<item name="android:textColorPrimary">#FFFFFF</item>
</style>
但是,我将其替换为 xml 中的工具栏:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
... >
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar_VenueDetail"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/MainColor" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="300dp"
android:background="@color/MainColor"
android:elevation="@dimen/default_elevation"
android:orientation="vertical">
</LinearLayout>
</LinearLayout>
在 OnCreate 中:
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar_VenueDetail);
setSupportActionBar(toolbar);
预期的结果是一个扁平的工具栏和一个线性布局下方的阴影,这正是 Android Studio 中的预览显示给我的:
然而在现实生活中,Toolbar 也已经生效:
我只想将阴影放在另一个视图下方并保持我的工具栏平坦,如何实现这一点?这甚至可能吗?