2016-02-17 138 views
2

我在一個活動中使用三個片段與tablayout。在片段中,我有12個edittext,所以我把它們放到scrollview中。但是滾動不起作用,我只能看到幾個edittext。滾動查看內部片段不會滾動

fragment.xml之

<ScrollView 
     xmlns:android="http://schemas.android.com/apk/res/android" 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:padding="1dp" 
     android:background="#fffbfbfb" 
     android:fillViewport="false" 
     android:id="@+id/scrollView"> 

     <TableLayout 

      android:id="@+id/tableLayout1" 
      android:layout_width="fill_parent" 
      android:layout_height="fill_parent" 
      android:stretchColumns="0" 
      android:background="#fffbfbfb"> 
    ........ 
</scrollview> 

activity.xml

<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.support.design.widget.AppBarLayout 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> 

     <android.support.design.widget.TabLayout 
      android:id="@+id/tabs" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      app:tabGravity="fill" 
      app:tabMode="fixed" /> 


     <android.support.v4.view.ViewPager 
      android:id="@+id/viewpager" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      app:layout_behavior="@string/appbar_scrolling_view_behavior" /> 

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

</android.support.design.widget.CoordinatorLayout> 
+0

HI,複製fragment.xml中的所有視圖。 –

+0

分享你的fragment.xml完整代碼 –

+0

在你說的問題你說標籤佈局和代碼中使用的表格佈局? –

回答

0

好吧,我做了一件事fragment.java文件:

現在滾動型工作正常,但viewpager已停止工作我的意思是我不能通過水平觸摸來改變片段,因爲它在將上述方法放入fragment.java之前正在工作。

2

如果使用滾動視圖協調佈局裏面,而不是使用默認的滾動視圖,請嘗試使用NestedScrollView

0

嘗試這您的代碼並確保滾動視圖有單個孩子

<ScrollView 
android:layout_height="fill_parent" 
android:layout_width="wrap_content" 
android:fillViewport="true" 
android:isScrollContainer="false" 

xmlns:android="http://schemas.android.com/apk/res/android" > 

如果還是不行,然後在包裝線性表的佈局佈局