android - Ошибка строки состояния и панели навигации ПРОЗРАЧНАЯ

У меня проблема с полупрозрачным статусбаром только при первом открытии приложения. Посмотрите на скриншот:

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 ответ

Поместите это в тег активности в манифесте. Это гарантирует, что приложение откроется во весь экран.

android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
Другие вопросы по тегам