ViewPager留出边 显示左右两边的视图
Posted bimingcong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ViewPager留出边 显示左右两边的视图相关的知识,希望对你有一定的参考价值。
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/pager_layout" android:layout_width="match_parent" android:layout_height="match_parent" android:clipChildren="false" android:layerType="software" > <android.support.v4.view.ViewPager android:id="@+id/view_pager" android:layout_width="250dp" android:layout_height="450dp"
android:layout_marginLeft="@dimen/size_30px"
android:layout_marginRight="@dimen/size_30px"
android:clipChildren="false" /> </RelativeLayout>
发现上面的RelativeLayout(可以用其它layout替换)和ViewPager的android:clipChildren都设置为了false。
android:clipChildren表示是否限制子View在其范围内,默认为true。
如此就可以 实现 两边 留边能看见视图的ViewPager
以上是关于ViewPager留出边 显示左右两边的视图的主要内容,如果未能解决你的问题,请参考以下文章
另一个 div 中的 div 没有占用其大小的 100%。它在左右两边留出相等的空间
带有边距和页面转换器的片段内的 ViewPager 无法正确呈现