各个组件都到不了屏幕边界,主要是父类容器,可能有margin,padding.等,要向父类容器检查,直到最底层容器.
问题xml:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin" //问题
android:paddingLeft="@dimen/activity_horizontal_margin" //问题
android:paddingRight="@dimen/activity_horizontal_margin" //问题
android:paddingTop="@dimen/activity_vertical_margin" //问题
tools:context=".MainActivity" >
<android.support.v4.view.ViewPager
android:id="@+id/vep_1"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
</android.support.v4.view.ViewPager>
</RelativeLayout>
在上述布局中添加任何组件都无法到达屏幕边界
修改完成,将问题删除即可.
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >
<android.support.v4.view.ViewPager
android:id="@+id/vep_1"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
</android.support.v4.view.ViewPager>
</RelativeLayout>
本文解决了一个常见的Android布局问题,即如何让布局内的组件能够触及屏幕边缘,通过调整RelativeLayout的padding属性实现了这一目标。
191

被折叠的 条评论
为什么被折叠?



