我正在开发一个Android应用,我需要在其中透明Status bar
和Toolbar
。
如何删除Toolbar
中以红线突出显示的左右空格?
我这样做如下:
main.xml中
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:openDrawer="start">
<include
layout="@layout/action_bar_main"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="start"
app:headerLayout="@layout/nav_header_main"
app:menu="@menu/main_activity_drawer" />
</android.support.v4.widget.DrawerLayout>
并且action_bar_main.xml为:
<?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"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="de.slowpoke.android.news.MainActivity">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/newsAppToolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#51000000"
android:clickable="false" />
</android.support.design.widget.AppBarLayout>
<include layout="@layout/content_main" />
</android.support.design.widget.CoordinatorLayout>
使用的样式如下:
<style name="AppTheme.NoActionBar" parent="AppTheme">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
<item name="android:statusBarColor">#51000000</item>
<item name="android:windowTranslucentNavigation">true</item>
</style>
答案 0 :(得分:0)
因为:
<item name="android:statusBarColor">#51000000</item>
你已经拥有:
android:background="#51000000"
作为background
的{{1}}。
您可能还想使用此功能:
Toolbar
而不是:
android:layout_height="?actionBarSize"
还有一点,android:layout_height="wrap_content"
不应该存在,你应该使用它:
Toolbar
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
颜色。