我正在尝试使用此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>