2015-12-02 1 views
3

Я разработал простое приложение для чтения PDF книг в формате PDF. Я начал с разработки около года назад, поэтому я нацелился на SDK версии 18. Теперь нужно начать использовать конструкцию Material, поэтому я установил targetSdkVersion на 22. После некоторых настроек с помощью панели инструментов у меня проблема с полноэкранным режимом , На первом снимке все хорошо. Полноэкранный режим не активирован.Android StatuBar overlay

The first picture. Fullscreen is not activated and everything looks fine.

На второй картинке, там вы можете увидеть белую строку в верхней части экрана. Это уродливо, и мне нужно его удалить.

enter image description here

Когда я целился SDK версии 18, это было прекрасно, потому что я установил, что StatusBar будет перекрывать содержание всей деятельности. Теперь кажется, что это не сработает.

В моей деятельности, то у меня есть такие строки:

public void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    Window window = getWindow();     
    supportRequestWindowFeature(Window.FEATURE_ACTION_BAR_OVERLAY); 
    window.addFlags(WindowManager.LayoutParams.FLAG_LAYOUT_IN_OVERSCAN); 

    // some other code is here...   
} 

Код для переключения между полноэкранным режимом следующим образом:

protected void fullscreenOn() { 
    if (mActivity != null && !mSearchModeOn) { 
     Window window = mActivity.getWindow(); 
     View decorView = window.getDecorView(); 
     if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.KITKAT) { 
      decorView.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_STABLE | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION | View 
        .SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION | View.SYSTEM_UI_FLAG_FULLSCREEN | View 
        .SYSTEM_UI_FLAG_IMMERSIVE); 
     } else { 
      window.addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN); 
      window.addFlags(WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN); 
      mActionBar.hide(); 
     } 

     bottomBarsLayout.setVisibility(View.GONE); 
     mIsFullscreenOn = true; 
    } 
} 

protected void fullscreenOff() { 
    if (mActivity != null) { 
     Window window = mActivity.getWindow(); 
     View decorView = window.getDecorView(); 
     if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.KITKAT) { 
      decorView.setSystemUiVisibility(mNormalUIVisibility); 
     } else { 
      window.clearFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN); 
      window.clearFlags(WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN); 
      mActionBar.show(); 
     } 

     bottomBarsLayout.setVisibility(View.VISIBLE); 
     mIsFullscreenOn = false; 
    } 
} 

Почти все работает отлично. Здесь есть только одна проблема - проблема с белой строкой в ​​верхней части экрана. Можете ли вы мне помочь, как я могу сделать наложение StatusBar? Это означает, что содержание деятельности будет охватывать весь экран. Я знаю, что я могу изменить цвет StatusBar с помощью android:colorPrimaryDark, но я не хочу этого делать.

UPDATE

Обратите внимание, что моя активность распространяется AppCompatActivity.

UPDATE 2

Макет моей деятельности выглядит следующим образом:

<android.support.v4.widget.DrawerLayout 
    android:id="@+id/drawer_layout" 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:fitsSystemWindows="true"> 

    <RelativeLayout 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     > 

     <include 
      layout="@layout/toolbar"/> 

     <include layout="@layout/fragment_single_root"/> 

    </RelativeLayout> 

    <include layout="@layout/menu_list"/> 

</android.support.v4.widget.DrawerLayout> 

Панель инструментов здесь:

<android.support.v7.widget.Toolbar 
android:id="@+id/toolbar" 
xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:app="http://schemas.android.com/apk/res-auto" 
android:layout_width="match_parent" 
android:layout_height="?attr/actionBarSize" 
android:background="?attr/colorPrimary" 
android:elevation="4dp" 
android:theme="@style/ThemeOverlay.AppCompat.ActionBar" 
/> 

И расположение моего фрагмента, который прилагается к деятельности, следует:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:orientation="vertical" 
android:layout_width="match_parent" 
android:layout_height="match_parent"> 

<com.radaee.reader.PDFReader 
    android:id="@+id/pdf_reader_view" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" /> 

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:id="@+id/frame_layout_bottom_bars" 
android:layout_width="match_parent" 
android:layout_height="wrap_content" 
android:layout_alignParentBottom="true" 
android:fitsSystemWindows="true"> 

<RelativeLayout 
    android:id="@+id/read_book_bottom_bar" 
    android:layout_width="match_parent" 
    android:layout_height="?android:attr/actionBarSize" 
    android:background="?attr/bottomBarBackground" 
    android:layout_alignParentBottom="true" 
    android:visibility="gone"> 

    <Button 
     android:id="@+id/img_view_read_book_content" 
     android:layout_width="wrap_content" 
     android:layout_height="32dp" 
     android:layout_alignParentLeft="true" 
     android:layout_margin="5dp" 
     android:layout_centerVertical="true" 
     android:gravity="center" 
     android:text="@string/title_content" 
     android:textSize="12sp" 
     android:background="?attr/imgBtnContent" /> 

    <SeekBar 
     android:id="@+id/seek_bar_read_book_listing" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_margin="5dp" 
     android:layout_centerVertical="true" 
     android:layout_toLeftOf="@+id/text_view_read_book_pages" 
     android:layout_toRightOf="@id/img_view_read_book_content" 
     android:gravity="center" /> 

    <TextView 
     android:id="@id/text_view_read_book_pages" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:textColor="?attr/simpleFontColor" 
     android:layout_centerVertical="true" 
     android:layout_alignParentRight="true" 
     android:layout_margin="5dp" /> 
</RelativeLayout> 

<LinearLayout 
    android:id="@+id/read_book_search_bar" 
    android:layout_width="match_parent" 
    android:layout_height="44dp" 
    android:fitsSystemWindows="true" 
    android:layout_alignParentBottom="true" 
    android:background="?attr/bottomBarBackground" 
    android:orientation="horizontal" 
    android:padding="10dp" 
    android:visibility="gone" 
    android:weightSum="5"> 

    <ImageView 
     android:id="@+id/img_view_search_prev" 
     android:layout_width="0dip" 
     android:layout_height="wrap_content" 
     android:layout_weight="1" 
     android:src="?attr/imgPrevSearchResult" /> 

    <TextView 
     android:id="@+id/text_view_search_info" 
     android:layout_width="0dip" 
     android:layout_height="wrap_content" 
     android:layout_gravity="center" 
     android:layout_weight="3" 
     android:textColor="?attr/simpleFontColor" 
     android:gravity="center" 
     android:singleLine="false" 
     android:text="Test" /> 

    <ProgressBar 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:id="@+id/pdf_search_progress_bar" 
     android:layout_gravity="center" 
     android:indeterminate="true" 
     android:layout_weight="3" 
     android:visibility="gone" /> 

    <ImageView 
     android:id="@+id/img_view_search_next" 
     android:layout_width="0dip" 
     android:layout_height="wrap_content" 
     android:layout_weight="1" 
     android:src="?attr/imgNextSearchResult" /> 
</LinearLayout> 

<RelativeLayout 
    android:id="@+id/relative_layout_custom_preview_parent" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:visibility="gone"> 

    <cz.project.base.view.TwoWayView 
     android:id="@+id/two_way_view_page_preview" 
     android:layout_width="match_parent" 
     android:layout_height="100dp" 
     android:drawSelectorOnTop="true" /> 
</RelativeLayout> 

ответ

0

Move

Window window = getWindow();     
supportRequestWindowFeature(Window.FEATURE_ACTION_BAR_OVERLAY); 
window.addFlags(WindowManager.LayoutParams.FLAG_LAYOUT_IN_OVERSCAN); 

перед тем

super.onCreate(savedInstanceState); 

Или вы можете использовать это:

this.supportRequestWindowFeature(Window.FEATURE_NO_TITLE); 
     if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { 
      Window w = getWindow(); // in Activity's onCreate() for instance 
      w.setFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION, WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION); 
} 
super.onCreate(savedInstanceState); 

Для прозрачной навигации и системной панели с тем же цветом панели инструментов.

+0

Спасибо. Я попробовал, но это не сработает. Я вижу точно такое же поведение. – PetrS

+0

Вы можете проверить обновленный ответ. –

+0

Извините, но я до сих пор не вижу разницы. Я вижу такое же поведение. – PetrS

0

Используйте этот стиль и установить его для вашей деятельности -

<style name="FullScreen" parent="@style/Theme.AppCompat.Light"> 
     <item name="windowNoTitle">true</item> 
     <item name="windowActionBar">false</item> 
     <item name="android:windowFullscreen">true</item> 
     <item name="android:windowContentOverlay">@null</item> 
</style> 
+0

Это тоже не работает. Но спасибо! – PetrS

1

набор android:fitsSystemWindows="false", что позволит избежать отступы сверху и снизу.

+0

Хорошо, спасибо. Но теперь панель действия наложена в строке состояния. Как я могу это решить, мужик? – PetrS

 Смежные вопросы

  • Нет связанных вопросов^_^