android ViewPager中的所有页面都显示在第一张幻灯片中

时间:2014-08-22 17:42:55

标签: android android-viewpager

我在自定义android.support.v4.view.ViewPager的布局中使用了android PagerAdapter。 我以这种方式定义了我的适配器(简化):

private final PagerAdapter mPagerAdapter= new PagerAdapter() {

    @Override
    public void destroyItem(View v, int arg1, Object o) {
        ((ViewPager) v).removeView((View) o);
    }

    @Override
    public boolean isViewFromObject(View v, Object o) {
        return o == ((View) o);
    }

    @Override
    public int getCount() {
        return 2;
    }

    public Object instantiateItem(View collection, final int position) {
        LayoutInflater inflater = (LayoutInflater) collection.getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);

        View view = inflater.inflate(R.layout.single_page, null);
        final String name;
        TextView pageName = (TextView) view.findViewById(R.id.tvPageName);
        switch (position) {
        case 0:
            name = "page 1";
            break;
        case 1:
            name = "page 2";
            break;
        default:
            name = "";
        }
        pageName.setText(name);
        ((ViewPager) collection).addView(view, 0);

        return view;
    }
};

single_page是一个由tvPageName包裹的文字视图(LinearLayout)组成的布局。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/tvPageName"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/app_name" />

</LinearLayout>

结果如下所示: layouts on stacked on top of eachother

我尝试为每个页面使用两种不同的布局,但结果是相同的。

布局xml的一部分:

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="center_horizontal"
    android:orientation="vertical" >

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >

        <android.support.v4.view.ViewPager
            android:id="@+id/pages"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="#ffeedd" />
    </FrameLayout>
</LinearLayout>

1 个答案:

答案 0 :(得分:2)

您对isViewFromObject()的实施是错误的。当前的实现将始终返回true,因此您的PagerAdapter将无法正常工作。

你需要它

@Override
public boolean isViewFromObject(View v, Object o) {
    return v == o;
}