我想要一个带有透明ActionBar的类似画廊的活动。如果我给它一个透明的颜色,它将显示左右两侧的间隙。如果我给它一个纯色,它不会。这是为什么?我需要删除它们?
我发现了一些相似的帖子,但所有给定的解决方案都没有用,或者无法为我找到原因的确切答案
activity_fullscreen_view.xml:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout
android:id="@+id/drawer_layout_fullscreen_image"
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"
android:fitsSystemWindows="true"
tools:openDrawer="start">
<include
layout="@layout/app_bar_image_fullscreen"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</android.support.v4.widget.DrawerLayout>
app_bar_image_fullscreen.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"
android:fitsSystemWindows="true"
android:id="@+id/coordinator_lay"
tools:context="com.myself.myapp.ImageFullScreenActivity">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/appbar"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar_image_fullscreen"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay">
</android.support.v7.widget.Toolbar>
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
</android.support.design.widget.CoordinatorLayout>
v21 \ styles.xml(导致间隙):
<resources>>
<style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
<style name="AppTheme.ActionBar.Transparent" parent="AppTheme.NoActionBar">
<item name="colorPrimary">@android:color/transparent</item>
</style>
v21 \ styles.xml(不会导致间隙):
<resources>>
<style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
<style name="AppTheme.ActionBar.Transparent" parent="AppTheme.NoActionBar">
<item name="colorPrimary">@color/myRed</item>
</style>
答案 0 :(得分:0)
我在这篇文章的帮助下解决了这个问题:
when set app:elevation=“0dp” then hamburgermenu not showing to toolbar
所以我补充道:
app:elevation="0dp"
到AppBarLayout并且:
findViewById(R.id.appBar).bringToFront();
到我在onCreate的活动。但是仍然不知道在我的情况下有什么影响这个效果......