我正尝试使用此Android: I am unable to have ViewPager WRAP_CONTENT
将视图寻呼机高度设置为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>
答案 0 :(得分:0)
试试这个,覆盖你的ViewPager
如下所示将使它达到目前最大的孩子的身高。
@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);
}
答案 1 :(得分:0)
如果您使用WRAP_CONTENT来定义您的身高,并且内容不够大,您将有额外的空间,因为这是预期的行为。
如果我理解正确,您希望ViewPager占用活动/片段的所有可能空间,其他视图也在其中。
如果您希望ViewPager占用所有可用空间,则应使用weight
的{{1}}属性:
LinearLayout
这种方式无论viewPager的内容如何,都会填满所有额外的空格。