2011-12-16 118 views
7

是否ViewPager必須是活動佈局中唯一存在的對象? 我想實現這樣的事情:Android ViewPager尺寸

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:id="@+id/reader_layout" 
android:layout_width="fill_parent" 
android:layout_height="fill_parent" 
android:orientation="vertical" > 

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

<Gallery 
    android:id="@+id/miniatures_gallery" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" /></LinearLayout> 

我應該在哪裏有一個大的尋呼機在上面滾動(我有)和一個較小的畫廊根據該滾動。 這隻顯示我的尋呼機,而不是畫廊。 有什麼建議嗎?

+1

試試這個:http://helpmeco.de/2012/1/android-viewpager-and-gallery-integration – browep 2012-02-28 23:47:52

+0

tnx這真是太好了......但是我在頁面旋轉時遇到了崩潰,對此有何建議? – 2012-02-29 10:15:57

+0

你有堆棧跟蹤嗎?你從github上獲得這個項目嗎,還是從教程中複製粘貼? – browep 2012-02-29 22:56:52

回答

6

ViewPager不支持wrap_content,因爲它(通常)永遠不會同時加載其所有子項,因此可能無法獲得適當的大小(選項可能是在每次有切換頁面)。

但是,您可以設置精確的尺寸(例如150dp)和match_parent
您還可以通過更改其LayoutParams中的屬性height來從代碼中動態修改尺寸。

0

我解決了幾個黑客的問題。這涉及到:

首先,我需要一個忽略ViewPager的高度限制的佈局。將其用作ViewPager項目的父級佈局。

public class TallLinearLayout extends LinearLayout { 

    public TallLinearLayout(Context context) { 
     super(context); 
    } 

    public TallLinearLayout(Context context, AttributeSet attrs) { 
     super(context, attrs); 
    } 

    public TallLinearLayout(Context context, AttributeSet attrs, int defStyle) { 
     super(context, attrs, defStyle); 
    } 

    @Override 
    protected void onMeasure (int widthMeasureSpec, int heightMeasureSpec) { 
     super.onMeasure(widthMeasureSpec, MeasureSpec.UNSPECIFIED); 
    } 
} 

我然後寫的邏輯,用於調整大小ViewPager:

private class ViewPagerContentWrapper implements OnGlobalLayoutListener { 
    private ViewPager mViewPager; 

    public ViewPagerContentWrapper(ViewPager viewPager) { 
     mViewPager = viewPager; 
    } 

    @Override 
    public void onGlobalLayout() { 
     int position = mViewPager.getCurrentItem(); 
     check(position); 
     check(position + 1); 
    } 

    private void check(int position) { 
     ViewGroup vg = (ViewGroup) mViewPager.getChildAt(position); 
     View v = vg == null ? null : vg.getChildAt(0); 

     if (v != null) { 
      int height = v.getHeight(); 
      if (height > mViewPager.getHeight()) { 
       resize(height); 
      } 
     } 
    } 

    private void resize(int height) { 
     mViewPager.setLayoutParams(
       new LinearLayout.LayoutParams(
         LinearLayout.LayoutParams.MATCH_PARENT, 
         height 
       ) 
     ); 
    } 
} 

其中我註冊爲全局佈局監聽器:

viewPager.getViewTreeObserver().addOnGlobalLayoutListener(new ViewPagerContentWrapper(viewPager)); 
4

分配佈局重量,以查看尋呼機作爲1個&高度= 0dp而不是wrap_content

<android.support.v4.view.ViewPager 
    android:id="@+id/page_viewer" 
    android:layout_width="match_parent" 
    android:layout_height="0dp" 
    android:layout_weight="1"/>