1

CollapsingToolbarLayout으로 레이아웃상의 NestedScrollView에 문제가 있습니다. 텍스트를 맨 아래로 스크롤 할 때 마지막 문장은 탐색 모음에서 다룹니다.네비게이션 바에 의해 숨겨진 NestedScrollView의 하단 부분 [Android]

enter image description here
는 layout.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" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:fitsSystemWindows="true"> 

    <android.support.design.widget.AppBarLayout 
     android:id="@+id/appBar" 
     android:layout_width="match_parent" 
     android:layout_height="250dp" 
     android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> 

     <android.support.design.widget.CollapsingToolbarLayout 
      android:id="@+id/collapsing_toolbar" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      app:contentScrim="?attr/colorPrimary" 
      app:expandedTitleTextAppearance="@style/ExpandedAppBar" 
      app:layout_scrollFlags="scroll|exitUntilCollapsed" 
      app:title="Title"> 

      <ImageView 
       android:id="@+id/toolbar_image_view" 
       android:layout_width="match_parent" 
       android:layout_height="match_parent" 
       android:scaleType="centerCrop" 
       android:src="@drawable/visit_at_office" 
       app:layout_collapseMode="parallax" /> 

      <android.support.v7.widget.Toolbar 
       android:id="@+id/toolbar" 
       android:layout_width="match_parent" 
       android:layout_height="?attr/actionBarSize" 
       app:layout_collapseMode="pin" /> 

     </android.support.design.widget.CollapsingToolbarLayout> 

    </android.support.design.widget.AppBarLayout> 

    <android.support.v4.widget.NestedScrollView 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:fitsSystemWindows="true" 
     app:layout_behavior="@string/appbar_scrolling_view_behavior"> 

     <TextView 
      android:id="@+id/textView" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:text="@string/lorem_ipsum" /> 
    </android.support.v4.widget.NestedScrollView> 
    </android.support.design.widget.CoordinatorLayout> 

는 텍스트 뷰에 마진 바닥을 추가는이 버그를 수정,하지만 난 더 나은 솔루션을 알고 싶습니다 그리고 왜 그런 일이있다. 아무도 도와 줄 수 없습니까?

답변

0

의 경우 루트 레이아웃에 android:fitsSystemWindows="true"을 추가했습니다.

이 줄은보기를 전체 화면에 맞출 것입니다.