我的
Android应用程序有一个半透明的ActionBar.当我触摸屏幕时隐藏它,并在再次触摸屏幕时再次显示.
/value-11/styles.xml
<style name="FullscreenTheme" parent="android:Theme.Holo"> <item name="android:actionBarStyle">@style/FullscreenActionBarStyle</item> <item name="android:windowActionBarOverlay">true</item> <item name="android:windowBackground">@null</item> <item name="buttonBarStyle">?android:attr/buttonBarStyle</item> <item name="buttonBarButtonStyle">?android:attr/buttonBarButtonStyle</item> </style> <style name="FullscreenActionBarStyle" parent="android:Widget.Holo.ActionBar"> <item name="android:background">@color/black_overlay</item> </style>
当我启动应用程序时,ActionBar是半透明的,这是预期的状态.当我使用getActionBar()隐藏它时.hide();并使用getActionBar()再次显示.show();它不再是半透明的了.
它是ViewPager中的片段.如果我向右滚动,隐藏并显示预期的效果:ActionBar在show()之后是半透明的;被叫.
更新:每次我向左滚动,错误再次出现.
解决方法
我解决了我的问题:
ViewPager内部视图的布局如下:
<ImageView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/presentation" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_gravity="center" android:contentDescription="@string/presentation" android:scaleType="fitCenter" android:fitsSystemWindows="true" > </ImageView>
android:fitsSystemWindows =“true”负责这个奇怪的bug,没有这个,一切正常.
抱歉写这么少的代码,我只是认为它是一个javacode问题而且与xml无关.我找不到一个代码块,大概是将是有错误的那个.我应该如何,错误在我的布局文件中. 原文链接:https://www.f2er.com/android/318293.html