gpt4 book ai didi

android - ViewPagers 必须在其 Activity 中具有唯一 ID 吗? (如果它们由 FragmentStatePagerAdapter 支持)

转载 作者:行者123 更新时间:2023-11-30 03:09:21 25 4
gpt4 key购买 nike

我有两个 ViewPagers 的 Activity 都使用 FragmentStatePagerAdapter .但是当 ViewPagers 没有 id,或者两者有相同的 id 时,它们将无法正常工作。


Activity 布局(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>

Activity :

@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

这是怎么回事?

最佳答案

它在 the docs 中说:

When using FragmentPagerAdapter the host ViewPager must have a valid ID set.

因此至少有文档表明适配器在没有其寻呼机 ID 的情况下将无法工作。我想您可以将“有效”理解为“在 Activity View 层次结构中唯一”。

关于android - ViewPagers 必须在其 Activity 中具有唯一 ID 吗? (如果它们由 FragmentStatePagerAdapter 支持),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21259884/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com