我正在使用以下布局构建一个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()
?
答案 0 :(得分:6)
weightSum=2
添加LinearLayout
属性,并设置orientation=vertical
。layout_weight=1
。另外,设置layout_height=0dip
LinearLayout
和layout_weight=1
layout_height=0dip
醇>
答案 1 :(得分:2)
我回答了类似的问题here。
解决方案扩展 ViewPager以覆盖onMeasure()
,使wrap_content
适用于高度。
答案 2 :(得分:0)
使用0dp
代替wrap_content
,并动态更改
pager = new ViewPager(this);
pager.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT));
答案 3 :(得分:-1)
为了为每个线性布局分配不同的屏幕空间,请尝试使用layout_weight
参数。您可以重新分配此代码以实现此“动态”加权更改。概述here包含大量关于如何在代码中实现权重布局的Google示例...
答案 4 :(得分:-2)
使用 RelativeLayout :
<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>