12

我正在构建一个具有以下布局的 android 应用程序。应用程序布局

众所周知,这layout_height="wrap_content"不适用于 ViewPager。

我的问题是如何动态更改它。ViewPager 的内容是从两个 xml 布局膨胀而来的,vp_statistics.xml and vp_campaigns.xml.

这是 ViewPager 的 xml

<LinearLayout
            android:id="@+id/topcontent_wrapper"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="10dp"
            android:orientation="vertical" >
</LinearLayout>

<LinearLayout
            android:id="@+id/viewpager_wrapper"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="10dp"
            android:orientation="vertical" >

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

这是我的 PagerAdapter 的代码

class MyPagerAdapter extends PagerAdapter{

@Override
public int getCount() {
    // TODO Auto-generated method stub
    return 2;
}

public Object instantiateItem(View collection, int pos){
    LayoutInflater inflater =     (LayoutInflater)collection.getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);

    int resId = 0;
    switch(pos){
    case 0:
        resId = R.layout.vp_statistics;
        break;
    case 1:
        resId = R.layout.vp_campaigns;
        break;
    }

    View view = inflater.inflate(resId, null);


    ((ViewPager)collection).addView(view, 0);

    return view;
}

@Override
public void destroyItem(ViewGroup container, int position, Object object) {
    // TODO Auto-generated method stub
    ((ViewPager)container).removeView((View)object);
}

@Override
public boolean isViewFromObject(View arg0, Object arg1) {
    // TODO Auto-generated method stub
    return arg0 == ((View)arg1);
}

@Override
public Parcelable saveState() {
    // TODO Auto-generated method stub
    return null;
}

}

在我的 Activity 类的 onCreate() 方法中:

MyPagerAdapter adapter = new MyPagerAdapter();
ViewPager viewPager = (ViewPager)findViewById(R.id.viewpager);
viewPager.setAdapter(adapter);
viewPager.setCurrentItem(0);

有没有办法获取vp_statistics.xml和布局的高度并在每次调用对象时vp_campaigns.xml动态分配它?ViewPager (@id/viewpager)instantiateItem()

4

5 回答 5

6
  1. weightSum=2向父级添加一个属性LinearLayout,并设置orientation=vertical.
  2. 设置顶部子 LinearLayout 的layout_weight=1. 另外,设置layout_height=0dip
  3. LinearLayoutlayout_weight=1and将 ViewPager 包装成另一个layout_height=0dip
于 2012-08-17T06:26:48.150 回答
2

我在这里回答了一个类似的问题。

该解决方案扩展ViewPager 以覆盖onMeasure()以使其wrap_content仅适用于高度。

于 2013-08-10T23:34:37.847 回答
0

使用0dp而不是wrap_content, 并动态更改

pager = new ViewPager(this);
        pager.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT));
于 2012-06-06T08:50:54.780 回答
-1

为了为每个线性布局分配不同的屏幕空间,请尝试使用该layout_weight参数。您可以重新分配此代码以实现此“动态”权重更改。此处概述了如何在代码中实现权重布局的大量 Google 示例...

于 2012-06-06T09:26:14.867 回答
-2

使用相对布局

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

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

    </LinearLayout>

    <android.support.v4.view.ViewPager
        android:id="@+id/pager"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_below="@+id/layout" >

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

</RelativeLayout>
于 2013-07-14T14:01:33.357 回答