我只使用ViewPager
实施了Views
。每个页面都有4个元素,标题(TextView
),SubTilte(TextView
),描述(TextView
)和ListView
。每页都有标题和列表,但其他元素并不总是存在。即,第一页有标题,副标题和列表,第二页有标题和列表,第三页有标题,副标题,描述和列表。所以第三页与其他页面相比具有很高的高度。我希望viewpager的每个页面都有相同的大小。我有一个自定义的viewpager类,它工作,但只有在我滚动所有页面后,但它第一次不起作用: -
public class WrapContentViewPager extends ViewPager {
private int mCurrentPagePosition = 0;
public WrapContentViewPager(Context context) {
super(context);
}
public WrapContentViewPager(Context context, AttributeSet attrs) {
super(context, attrs);
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
try {
View child = getChildAt(mCurrentPagePosition);
if (child != null) {
child.measure(widthMeasureSpec, MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED));
int h = child.getMeasuredHeight();
heightMeasureSpec = MeasureSpec.makeMeasureSpec(h, MeasureSpec.EXACTLY);
}
} catch (Exception e) {
e.printStackTrace();
}
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
}
}
这是我的xml布局: -
<RelativeLayout
android:id="@+id/showCardsLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<co.mobile_android.customViews.WrapContentViewPager
android:id="@+id/cardsList"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true" />
</RelativeLayout>
请帮助:)