2017-01-08 120 views
2

我試圖將我的ConstraintLayout添加到NestedScrollView。 觀看我的ContraintLayout時,一切都很美好。Android約束佈局NestedScrollView中的Renderproblems

但隨後,包括佈局,我NestedScrollView坍塌的ContraintLayout。(雖然我使用匹配父寬/ heigt對包括在我的CL)

這實際上是在與前一版本中的錯誤ContraintLayout(〜pre Beta)。 Google Bug Reports

我跟隨Verion beta4的這種方法。 Link to Youtube AndroidDev Channel

constraint_layout.xml:

<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:app="http://schemas.android.com/apk/res-auto" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:id="@+id/coordinator_layout" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:fitsSystemWindows="true" 
    tools:context="de.project.andy.aliver.JobCreatorActivity"> 

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

    <android.support.design.widget.AppBarLayout 
     android:id="@+id/app_bar" 
     android:layout_width="match_parent" 
     android:layout_height="145dp" 
     android:fitsSystemWindows="true" 
     android:theme="@style/AppTheme.AppBarOverlay"> 

     <android.support.design.widget.CollapsingToolbarLayout 
      android:id="@+id/toolbar_layout" 
      android:layout_width="match_parent" 
      android:layout_height="143dp" 
      android:fitsSystemWindows="true" 
      app:contentScrim="?attr/colorPrimary" 
      app:layout_scrollFlags="scroll|exitUntilCollapsed"> 

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

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

    <android.support.design.widget.FloatingActionButton 
     android:id="@+id/jc_fab" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:src="@android:drawable/arrow_up_float" 
     android:layout_gravity="end|bottom" 
     app:fabSize="normal" 
     android:layout_margin="15dp" /> 
</android.support.design.widget.CoordinatorLayout> 

nested_scrollview_layout.xml:

<android.support.v4.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:app="http://schemas.android.com/apk/res-auto" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    app:layout_behavior="@string/appbar_scrolling_view_behavior" 
    tools:context="de.project.andy.aliver.JobCreatorActivity" 
    tools:showIn="@layout/activity_job_creator"> 

    <include layout="@layout/constraint_layout" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" /> 
</android.support.v4.widget.NestedScrollView> 

有沒有解決辦法?

回答

8

Gosh ...預備一個小時沒有答案。 創建一個SO帖子,5分鐘後找到答案。

上面描述的這個問題與ScrollView中的相同。解決方案是將

android:fillViewport="true" 

添加到可滾動的父級。

+0

由於某些原因,Android Studio(自2.3.1起)不會在NestedScrollView xml元素中自動提示此屬性,所以我認爲它不受支持。所以總是在這裏幫助:) –