查看Pager换行内容问题



我正在尝试使用此Android将视图寻呼机高度设置为wrap_content:我无法使用ViewPager wrap_content

但它在底部留下了额外的空白

如何删除此空间?

这是我的xml代码:

<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:layout_marginTop="8dp"
card_view:cardCornerRadius="@dimen/card_corner_radius">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">

<com.test.android.custom_views.WrapContentHeightViewPager
android:id="@+id/similarRecipesPager"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="8dp"
android:visibility="visible" />
</LinearLayout>
</android.support.v7.widget.CardView>

试试看,如下所示重写ViewPager的onMeasure将使其获得当前最大孩子的身高。

@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
int height = 0;
for(int i = 0; i < getChildCount(); i++) {
View child = getChildAt(i);
child.measure(widthMeasureSpec, MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED));
int h = child.getMeasuredHeight();
if(h > height) height = h;
}
heightMeasureSpec = MeasureSpec.makeMeasureSpec(height, MeasureSpec.EXACTLY);
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
}

如果您使用WRAP_CONTENT来定义您的身高,而内容不够大,您将有额外的空间,因为这是预期的行为。

如果我正确理解你的话,你希望你的ViewPager占据你的活动/片段中所有可能的空间,其他视图也在其中。

如果你想要一个占用所有可用空间的ViewPager,你应该使用LinearLayout:的weight属性

<LinearLayout android:orientation="vertical"
android:layout_height="match_parent"
android:layout_width="match_parent">
<ViewPager android:id="@+id/my_view_pager"
android:layout_height="0dp"
android:layout_width="match_parent"
android:layout_weight="1"/>
<View
android:id="@+id/other_view"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>

这样,无论你的viewPager的内容如何,它都会填充所有多余的空白。

相关内容

  • 没有找到相关文章

最新更新