0

マイレイアウトファイルでのLinearLayout外では動作しません:私は、このような代わりに、リニアの相対など、他のビューを使用している場合、それはまだdoesnの、どんなに私がfill_parentsに高さを変更する方法ScrollviewがViewpager

<?xml version="1.0" encoding="utf-8"?> 
<ScrollView 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:fillViewport="true"> 

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


     <ImageView 
      android:id="@+id/imageViewPage" 
      android:layout_width="match_parent" 
      android:layout_height="200dp" 
      android:src="@drawable/zelenjavne_jedi"/> 


     <android.support.v4.view.ViewPager 
      android:id="@+id/viewpager" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content"> 

      <android.support.design.widget.TabLayout 
       android:id="@+id/sliding_tabs" 
       android:layout_width="match_parent" 
       android:layout_height="wrap_content"/> 

     </android.support.v4.view.ViewPager> 

    </LinearLayout> 

</ScrollView> 

、wrap_content、match_parentなど仕事はありません。

+0

私たちにそれが働いていたdidntのケースを表示します。 –

+0

上記は機能しません。 [画像](https://drive.google.com/file/d/1i9G2QMNm-boYBvx462R8ehQODwoLssn0/view?usp=sharing)トップは画像表示です。ボットは左右にスワイプして2つの断片になります。私は絵を下にスクロールできません。 – user3366345

+0

WrapContentはビューページの内容をラップしますが、ビューの追加後に計算されるかどうかはわかりませんが、ImageViewがスクロールしていない可能性があります。 –

答えて

0

Solution found here

このようなDP値にlayout_height属性を設定する必要があります。

<android.support.v4.view.ViewPager 
      android:id="@+id/viewpager" 
      android:layout_width="match_parent" 
      android:layout_height="500dp"> 
関連する問題