ViewViewrs必须在其Activity中有唯一的ID吗? (如果它们由FragmentStatePagerAdapter支持)

时间:2014-01-21 13:43:10

标签: android android-viewpager

我有一个活动,其中两个ViewPage都使用FragmentStatePagerAdapter。但是当ViewPagers没有id,或者两者都具有相同的id时,它们将无法正常工作。


活动布局(activity.xml):

<LinearLayout 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:orientation="vertical"
    tools:context="com.example.app.MainActivity">

    <FrameLayout
            android:id="@+id/frame1"
            android:layout_width="match_parent"
            android:layout_weight="1"
            android:layout_height="0dp">

       <include layout="@layout/merge_pager" />

     </FrameLayout>

     <FrameLayout
        android:id="@+id/frame2"
        android:layout_width="match_parent"
        android:layout_weight="1"
        android:layout_height="0dp">

        <include layout="@layout/merge_pager" />

    </FrameLayout>

</LinearLayout>

合并布局(merge_pager.xml):

<merge xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.v4.view.ViewPager
        android:id="@+id/view_pager"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

</merge>

的活动:

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity);
    FrameLayout frame1 = (FrameLayout) findViewById(R.id.frame1);
    FrameLayout frame2 = (FrameLayout) findViewById(R.id.frame2);

    ViewPager vp1 = (ViewPager) frame1.getChildAt(0);
    ViewPager vp2 = (ViewPager) frame2.getChildAt(0);

    if (vp1 == null | vp2 == null) {
        throw new NullPointerException();
    }
    vp1.setAdapter(new ColorAdapter(getSupportFragmentManager()));
    vp2.setAdapter(new ColorAdapter(getSupportFragmentManager()));
}

private class ColorAdapter extends FragmentStatePagerAdapter {
    public ColorAdapter(FragmentManager fragmentManager) {
        super(fragmentManager);
    }

    @Override
    public Fragment getItem(int i) {
        return new ColorFragment();
    }

    @Override
    public int getCount() {
        return Integer.MAX_VALUE;
    }
}

public static class ColorFragment extends Fragment {
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        TextView tv = new TextView(container.getContext());
        Drawable d = new ColorDrawable(randomColor());
        tv.setBackgroundDrawable(d);
        return tv;
    }

public static int randomColor() {
    return Color.rgb(random255(), random255(), random255());
}

public static int random255() {
    return
            (int) (Math.random() * (double) 255);
}

使用此代码,第二个ViewPager将无法运行。我怀疑它可能是由于冲突ID(R.id.view_pager),所以我从合并文件中删除了id。但是,这会导致致命的例外:

 FATAL EXCEPTION: main
    android.content.res.Resources$NotFoundException: Unable to find resource ID #0xffffffff

这是怎么回事?

1 个答案:

答案 0 :(得分:1)

the docs中说:

  

使用FragmentPagerAdapter时,主机ViewPager必须具有有效的ID集。

所以至少记录了如果没有其寻呼机的id,适配器将无法工作。我想你可以把'有效'称为'活动视图层次结构中的唯一'。