2016-09-17 70 views
0

我剛剛在我的項目中遇到了一個暫時出現問題的障礙。看不到NestedScrollView底部的小部件

我有一個CoordinatorLayout,它有一個AppBarLayout和一個NestedScrollView。我正在使用CollapsibleToobarLayout,它工作得很好。問題是,NestedScrollView不會上下滾動,因爲它應該。在toolbar崩潰後,它不再滾動,將隱藏的小部件隱藏起來。

我試過android:fillViewPort="true"android:layout_gravity="fill_vertical"但沒有改變。下面的代碼ListView控件後

<?xml version="1.0" encoding="utf-8"?> 
<android.support.design.widget.CoordinatorLayout 
    xmlns:app="http://schemas.android.com/apk/res-auto" 
    xmlns:tools="http://schemas.android.com/tools" 
    xmlns:app="http://schemas.android.com/apk/res-auto" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:theme="@style/MyMaterialTheme" 
    android:fitsSystemWindows="true" 
    xmlns:android="http://schemas.android.com/apk/res/android"> 

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

     <android.support.design.widget.CollapsingToolbarLayout 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:id="@+id/collapsingToolbar" 
      app:contentScrim="?attr/colorPrimary" 
      app:expandedTitleMarginStart="10dp" 
      app:expandedTitleMarginEnd="10dp" 
      app:layout_scrollFlags="scroll|exitUntilCollapsed" 
      android:background="@color/colorPrimary"> 

      <ImageView 
       android:layout_width="match_parent" 
       android:layout_height="match_parent" 
       android:fitsSystemWindows="true" 
       android:scaleType="centerCrop" 
       android:background="@drawable/bgPicture" 
       app:layout_collapseMode="pin"/> 

      <android.support.v7.widget.Toolbar 
       android:id="@+id/toolbar" 
       android:layout_width="match_parent" 
       android:layout_height="?attr/actionBarSize" 
       app:titleTextAppearance="@style/Toolbar.TitleText" 
       android:layout_gravity="top" 
       app:layout_collapseMode="pin" 
       android:popupTheme="@style/ThemeOverlay.AppCompat.Light" 
       > 

       <ImageButton 
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content" 
        android:background="@drawable/custom_trash" 
        android:clickable="true" 
        android:layout_alignParentEnd="true" 
        android:layout_alignParentRight="true" 
        android:layout_gravity="end" 
        android:id="@+id/deleteButton"/> 

      </android.support.v7.widget.Toolbar> 

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

    <android.support.v4.widget.NestedScrollView 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:layout_weight="1" 
     android:fitsSystemWindows="true" 
     android:layout_gravity="fill_vertical" 
     android:background="@color/grey" 
     android:clipToPadding="false" 
     app:layout_behavior="@string/appbar_scrolling_view_behavior" 
     android:fillViewport="true"> 

     <TableLayout 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:paddingTop="10dp" 
      android:paddingLeft="10dp" 
      android:paddingRight="10dp" 
      android:id="@+id/tableLayout"> 

      <TableRow 
       android:layout_height="wrap_content" 
       android:layout_width="wrap_content"> 



       <RelativeLayout 
        android:layout_width="0dp" 
        android:layout_height="100dp" 
        android:layout_centerHorizontal="false" 
        > 

        <TextView 
         android:layout_height="wrap_content" 
         android:layout_width="0dp" 
         android:id="@+id/goalIdTextView" 
         android:visibility="gone" 
         /> 
        <ProgressBar 
         android:id="@+id/progress" 
         android:layout_width="match_parent" 
         android:indeterminate="false" 
         android:max="100" 
         android:progress="60" 
         android:progressDrawable="@drawable/circular_progress_bar" 
         android:layout_height="match_parent" 
         style="?android:attr/progressBarStyleHorizontal" 
         android:layout_centerHorizontal="true" /> 

        <TextView 
         android:layout_width="wrap_content" 
         android:layout_height="wrap_content" 
         android:layout_centerInParent="true" 
         android:text="100%" 
         android:textColor="#000000" 
         android:textSize="20sp" 
         android:textStyle="bold"/> 

       </RelativeLayout> 



       <TextView 
        android:layout_width="wrap_content" 
        android:layout_height="match_parent" 
        android:textAlignment="gravity" 
        android:layout_gravity="right" 
        android:id="@+id/progressText" 
        /> 

      </TableRow> 

      <TableRow 
       android:layout_width="match_parent" 
       android:layout_height="wrap_content" 
       android:paddingBottom="5dp"> 


      </TableRow> 

      <TableRow 
       android:layout_width="match_parent" 
       android:layout_height="wrap_content" 
       android:paddingBottom="5dp"> 

       <EditText 
        android:layout_weight="1" 
        android:id="@+id/goalTitle" 
        android:layout_height="wrap_content" 
        android:layout_width="wrap_content" 
        android:background="@android:drawable/editbox_background_normal" 
        android:paddingTop="14dp" 
        android:textCursorDrawable="@null" 
        android:paddingBottom="11dp" 
        android:hint="Goal Title"/> 
      </TableRow> 

      <TableRow 
       android:layout_width="match_parent" 
       android:layout_height="wrap_content" 
       android:paddingTop="5dp"> 

       <TextView 
        android:layout_height="wrap_content" 
        android:layout_width="match_parent" 
        android:layout_weight="1" 
        android:text="@string/deadline_text" 
        android:textStyle="bold" 
        /> 
      </TableRow> 

      <TableRow 
       android:layout_width="match_parent" 
       android:layout_height="wrap_content" 
       android:paddingBottom="5dp"> 

       <EditText 
        android:id="@+id/dateEditText" 
        android:layout_width="0dp" 
        android:layout_height="wrap_content" 
        android:ems="10" 
        android:layout_weight="1" 
        android:focusable="false" 
        android:inputType="date" 
        android:background="@android:drawable/editbox_background_normal" 
        android:paddingTop="14dp" 
        android:paddingBottom="11dp" 
        /> 

       <ImageButton 
        android:id="@+id/selectDate" 
        android:layout_height="wrap_content" 
        android:layout_width="wrap_content" 
        android:layout_weight="0" 
        android:layout_toRightOf="@+id/date" 
        android:contentDescription="@string/select_date" 
        android:cropToPadding="true" 
        android:background="@drawable/calendar_icon"/> 

      </TableRow> 
      <TableRow 
       android:layout_width="match_parent" 
       android:layout_height="wrap_content" 
       android:paddingTop="5dp"> 

       <TextView 
        android:layout_height="wrap_content" 
        android:layout_width="match_parent" 
        android:layout_weight="1" 
        android:text="@string/tasks_label" 
        android:textStyle="bold" 
        /> 
      </TableRow> 

      <TableRow 
       android:layout_width="match_parent" 
       android:layout_height="wrap_content"> 

       <ListView 
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content" 
        android:id="@+id/listView" 
        android:paddingTop="5dp" 
        android:paddingLeft="10dp" 
        android:paddingRight="10dp" 
        android:paddingBottom="10dp" 
        android:background="@android:drawable/editbox_background_normal" 
        android:layout_centerHorizontal="true" /> 

      </TableRow> 


      <TableRow 
       android:layout_height="wrap_content" 
       android:layout_width="match_parent" 
       android:background="@color/colorPrimary"> 

       <Button 
        android:layout_height="wrap_content" 
        android:layout_width="wrap_content" 
        android:layout_weight="1" 
        android:textAllCaps="false" 
        android:id="@+id/updateButton" 
        android:textColor="#000" 
        android:onClick="updateGoal" 
        android:textAppearance="?android:textAppearanceLarge" 
        android:text="@string/submit" 
        /> 
      </TableRow> 
     </TableLayout> 
    </android.support.v4.widget.NestedScrollView> 
</android.support.design.widget.CoordinatorLayout> 

任何屏幕上不顯示,無論能不能滾動到視圖

+0

在此處添加您的代碼,以便我們可以看到有什麼問題 –

+0

將您的xml放在這裏 –

+0

完成。希望我很快找到幫助 –

回答

0

標準滾動型只是爲了被用作父。您需要將ScrollView更改爲android.support.v4.widget.NestedScrollView

可以在參考文檔AppBarLayout中看到一個示例。

+0

我已經使用NestedScrollView,而不是ScrollView –

+0

您需要創建NestedScrollView作爲父佈局 –

+0

沒有想到這一點..通過這個你的意思是父佈局,而不是CoordinatorLayout? –

相關問題