android - 错误状态栏和导航栏透明

时间:2014-06-26 07:38:11

标签: android statusbar android-4.4-kitkat

我第一次打开应用时,半透明状态栏出现问题。看一下屏幕截图:

http://i1335.photobucket.com/albums/w673/ductruongcntt/Screenshot_2014-06-26-14-17-26_zps1e9a56f4.png

以下是我使用的样式的XML,其中包括半透明的状态栏:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipToPadding="false"
android:fitsSystemWindows="true"
android:orientation="vertical" >

<com.viewpagerindicator.PagerSlidingTabStrip
    android:id="@+id/indicatorTabHome"
    android:layout_width="match_parent"
    android:layout_height="40dp"
    android:clipToPadding="false"
    android:fitsSystemWindows="true" >
</com.viewpagerindicator.PagerSlidingTabStrip>

<android.support.v4.view.ViewPager
    android:id="@+id/vpMain"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >
</android.support.v4.view.ViewPager>

和我的主题:

  <style name="MyTheme" parent="@android:style/Theme.Holo.Light">
    <item name="android:windowContentOverlay">@null</item>
    <item name="android:windowTranslucentStatus">true</item>

</style>

1 个答案:

答案 0 :(得分:0)

将其放入清单中的活动代码中。这将确保应用程序全屏显示。

android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"