中心ViewPager水平

时间:2015-09-08 13:44:04

标签: android android-viewpager

当页面没有填满设备的宽度时,我试图水平居中ViewPager的内容。我根据其中包含的图像的宽度设置每个页面的宽度,并在RecyclerView内对xml进行充气我尝试了center_horizontal的每个组合,但似乎没有工作;除了屏幕左侧的内容,当我尝试滚动页面时,它们在左右之间闪烁。

如果没有以编程方式设置ViewPager填充,我有什么方法可以做到这一点?为什么android:layout_gravity:"center_horizontal"或其任何同义词不起作用?

以下是我在xml中的代码:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

<android.support.v4.view.ViewPager
    android:id="@+id/viewpager"
    android:layout_width="wrap_content"
    android:layout_height="250dp"
    android:layout_centerHorizontal="true"
    android:clickable="true"
    android:clipToPadding="false"
    android:orientation="horizontal"
    android:overScrollMode="never"
    android:paddingLeft="8dp"
    android:paddingRight="8dp"/>
</RelativeLayout>

我看到的: What I see

我想看到的内容: What I want to see

0 个答案:

没有答案