gpt4 book ai didi

android - 添加另一个项目后应用程序崩溃 - cwac-pager

转载 作者:行者123 更新时间:2023-11-30 00:08:12 25 4
gpt4 key购买 nike


我在向 cwac-pagerArrayPagerAdapter (v4) 添加另一个页面时遇到问题。我不得不使用该库,因为我无法使用系统 PagerAdapter 动态添加新选项卡。
MainActivity.java:

public class MainActivity extends AppCompatActivity implements TabLayout.OnTabSelectedListener {

private ViewPager viewPager;
private ArrayPagerAdapter pagerAdapter;
private TabLayout tabLayout;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

setSupportActionBar((Toolbar) findViewById(R.id.app_toolbar));

tabLayout = findViewById(R.id.tab_layout);
tabLayout.setTabGravity(TabLayout.GRAVITY_FILL);

viewPager = findViewById(R.id.pager);
pagerAdapter = new CustomPagerAdapter(getSupportFragmentManager(), new ArrayList<PageDescriptor>());
viewPager.setAdapter(pagerAdapter);
viewPager.addOnPageChangeListener(new TabLayout.TabLayoutOnPageChangeListener(tabLayout));
tabLayout.addOnTabSelectedListener(this);
}

@Override
public void onStart() {
super.onStart();
pagerAdapter.add(new TestPageDescriptor());
tabLayout.addTab(tabLayout.newTab().setText("Hello"));
// Uncomment the following lines to make the app crash
pagerAdapter.add(new TestPageDescriptor()); // CRASH
tabLayout.addTab(tabLayout.newTab().setText("Hello2"));
}

@Override
public void onStop() {
super.onStop();
// Remove all the tabs (required in my main application, not in this test)
tabLayout.removeAllTabs();
for (int i = 0; i < pagerAdapter.getCount(); i++) {
pagerAdapter.remove(i);
}
}

@Override
public void onTabSelected(TabLayout.Tab tab) {
viewPager.setCurrentItem(tab.getPosition());
}

@Override
public void onTabUnselected(TabLayout.Tab tab) {

}

@Override
public void onTabReselected(TabLayout.Tab tab) {

}

private class CustomPagerAdapter extends ArrayPagerAdapter<Fragment> {

CustomPagerAdapter(FragmentManager fragmentManager, List<PageDescriptor> descriptors) {
super(fragmentManager, descriptors);
}

@Override
protected Fragment createFragment(PageDescriptor desc) {
return new TestFragment();
}
}

private class TestPageDescriptor extends SimplePageDescriptor {

TestPageDescriptor() {
super("Test","TestHey");
}
}
}

TestFragment.java:

public class TestFragment extends Fragment {

@Override
public View onCreateView(@NonNull LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
return inflater.inflate(R.layout.test_frag, container, false);
}
}

activity_main.xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="me.test.myapplication.MainActivity"
android:orientation="vertical">

<android.support.v7.widget.Toolbar
android:id="@+id/app_toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:title="@string/app_name" />

<android.support.design.widget.TabLayout
android:id="@+id/tab_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
android:elevation="4dp"
android:minHeight="?attr/actionBarSize"/>

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

test_frag.xml:只是一个带有 ViewLinearLayout,无论是哪个。

MainActivity.java 中查看我在 onStart() 中添加的注释:如果您仅使用一个选项卡运行应用程序(方法的最后两行注释), Activity 将正确开始。但是,如果您通过取消注释这些行来添加另一个选项卡,应用程序将立即崩溃。我做错了什么?
谢谢

编辑:logcat

I/Process: Sending signal. PID: 3877 SIG: 9
Application terminated.

没有异常,没有错误。

最佳答案

fragment 标签必须是唯一的,如 the library documentation 中所述.因此,正如 Matt Clark 指出的那样,您需要为不同的页面使用不同的标签。

请注意,您不需要创建自己的 SimplePageDescriptor 子类,至少在您问题的代码中是这样。您可以直接使用 SimplePageDescriptor

关于android - 添加另一个项目后应用程序崩溃 - cwac-pager,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48609986/

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