为什么透明的ActionBar左右会有空隙?
Why does a transparent ActionBar have gaps to the left and right?
我想要一个类似画廊的 activity 和一个透明的 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>
我在这个post的帮助下解决了它:
所以我补充说:
app:elevation="0dp"
AppBarLayout 和:
findViewById(R.id.appBar).bringToFront();
我在 onCreate 中的 activity。但是仍然不知道在我的案例中产生这种效果的内容涵盖了什么....
我想要一个类似画廊的 activity 和一个透明的 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>
我在这个post的帮助下解决了它:
所以我补充说:
app:elevation="0dp"
AppBarLayout 和:
findViewById(R.id.appBar).bringToFront();
我在 onCreate 中的 activity。但是仍然不知道在我的案例中产生这种效果的内容涵盖了什么....