!http://s12.postimg.org/5na33aggt/Screenshot_2015_09_25_23_04_51.png
上面的链接显示了我面临的问题...我正在使用kitkat版本的工具栏和v-19 styles.xml文件中的windowTranslucentStatus属性已设置为true ...状态栏和工具栏按预期显示,但是当我展开搜索视图小部件时,工具栏会向下扩展底部..
我的v-19 \ styles.xml
<style name="AppTheme" parent="AppTheme.Base">
<item name="windowNoTitle">true</item>
<item name="windowActionBar">false</item>
<item name="colorPrimary">@color/primaryColor</item>
<item name="colorPrimaryDark">@color/primaryColorDark</item>
<item name="colorAccent">@color/accentColor</item>
<item name="android:windowTranslucentStatus">true</item>
</style>
我的app_bar.xml
<android.support.v7.widget.Toolbar
xmlns:app="http://schemas.android.com/apk/res/android"
app:background="?attr/colorPrimary"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:fitsSystemWindows="true"
app:minHeight="?attr/actionBarSize"
app:layout_height="wrap_content"
app:layout_width="match_parent">
</android.support.v7.widget.Toolbar>
和我的活动布局包含工具栏
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<include
android:id="@+id/app_bar"
layout="@layout/app_bar">
</include>
<LinearLayout
android:id="@+id/cardlistplaces_layout"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
</LinearLayout>
</LinearLayout>
如果有人可以帮助我,我会完全赞赏...