2017-05-09 148 views
2

它是真的還是不是?我想通過使用嵌套滾動視圖在我的活動內的列表視圖上滾動。請幫忙。在此先感謝嵌套滾動視圖內滾動視圖不起作用

<android.support.v4.widget.NestedScrollView 
    android:id="@+id/login_form" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content"> 

    <LinearLayout 
     android:id="@+id/insertkend_form" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:orientation="vertical"> 

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

      <ListView 
       android:layout_width="match_parent" 
       android:layout_height="wrap_content" 
       android:id="@+id/listAksesoris"> 
      </ListView> 

     </ScrollView> 

    </LinearLayout> 

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

+0

此佈局很奇怪 - 您有3層滾動視圖(NestedScrollView,ScrollView和ListView)。最大的問題是爲什麼你需要所有這些? –

+0

首先我在'nestedscrollview'和'listview'中建立一個表單,我需要使用複選框來檢查一些選項。我希望你明白我的意思。 @ DoronYakovlev-Golani –

回答

4

這是現在的工作,只是刪除scrollview,並添加listviewandroid:nestedScrollingEnabled="true"

+0

爲我工作謝謝 –