简体   繁体   English

ListFragment的FragmentPagerAdapter getItem错误

[英]FragmentPagerAdapter getItem error with ListFragment

I've looked at quite a lot of code and can't figure this out. 我看了很多代码,无法解决这个问题。 http://developer.android.com/reference/android/support/v4/app/FragmentPagerAdapter.html http://developer.android.com/reference/android/support/v4/app/FragmentPagerAdapter.html

It has to be something simple. 它必须是简单的东西。 I'm showing most of the code. 我正在展示大部分代码。 The error is in the next section. 错误在下一节中。

    public class MainActivity extends FragmentActivity implements
    ActionBar.TabListener {

public static final int TAB_COUNT = 3;
public static InputMethodManager inputManager;

SectionsPagerAdapter mSectionsPagerAdapter;
ViewPager mViewPager;

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

    mSectionsPagerAdapter = new SectionsPagerAdapter(
            getSupportFragmentManager());

    // Set up the action bar.
    final ActionBar actionBar = getActionBar();
    actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);

    mViewPager = (ViewPager) findViewById(R.id.pager);
    mViewPager.setAdapter(mSectionsPagerAdapter);

    // When swiping between different sections, select the corresponding
    // tab.
    mViewPager
            .setOnPageChangeListener(new ViewPager.SimpleOnPageChangeListener() {
                @Override
                public void onPageSelected(int position) {
                    actionBar.setSelectedNavigationItem(position);
                }
            });

    // For each of the sections in the app, add a tab to the action bar.
    for (int i = 0; i < mSectionsPagerAdapter.getCount(); i++) {

        actionBar.addTab(actionBar.newTab()
                .setText(mSectionsPagerAdapter.getPageTitle(i))
                .setTabListener(this));
    }

    // To control keyboard pop-up
    inputManager = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);

}
    @Override
public boolean onCreateOptionsMenu(Menu menu) {
    getMenuInflater().inflate(R.menu.menu_main, menu);
    return true;
}

@Override
public void onTabUnselected(ActionBar.Tab tab,
        FragmentTransaction fragmentTransaction) {
}

@Override
public void onTabSelected(ActionBar.Tab tab,
        FragmentTransaction fragmentTransaction) {
    // When the given tab is selected, switch to the corresponding page in
    // the ViewPager.
    mViewPager.setCurrentItem(tab.getPosition());
}

@Override
public void onTabReselected(ActionBar.Tab tab,
        FragmentTransaction fragmentTransaction) {
}

This is where my error is. 这是我的错误所在。 case 1 of getItem , Type mismatch: Cannot convert from MainActivity.HistoryFragment to Fragment. getItem case 1,Type mismatch:无法从MainActivity.HistoryFragment转换为Fragment。 it is telling me to either change method return type to HistoryFragment or change return type of newInstance() to Fragment. 它告诉我要么将方法返回类型更改为HistoryFragment要么将newInstance()返回类型更改为Fragment。 Where I can't do either. 哪里我也做不到。 Other examples I've seen look almost identical to my code. 我见过的其他例子看起来与我的代码几乎相同。 I have tried with and without passing an argument. 我曾尝试过,不经过论证。

    public class SectionsPagerAdapter extends FragmentPagerAdapter {

    public SectionsPagerAdapter(FragmentManager fm) {
        super(fm);
    }

    @Override
    public Fragment getItem(int i) {
        switch (i) {
        case 0:
            Fragment tipCalc = new TipCalcFragment();
            return tipCalc;
        case 1:
            // Fragment history = new HistoryFragment();
            return HistoryFragment.newInstance(i); //ERROR HERE
        case 2:
            Fragment stats = new StatsFragment();
            return stats;
        }
        return null;
    }

And my HistoryFragment that extends ListFragment . 我的HistoryFragment扩展了ListFragment In the end it won't be pulling from the String[] values but from database resources. 最后,它不会从String[]值中提取,而是从数据库资源中提取。 I just wanted to setup a structure first and see it/play with the layout. 我只是想先设置一个结构,然后看看/播放布局。

    public static class HistoryFragment extends ListFragment {
    // public HistoryFragment() {
    // }

    String[] values = new String[] { ... };

    static HistoryFragment newInstance(int num) {
        HistoryFragment history = new HistoryFragment();

        Bundle args = new Bundle();
        args.putInt("num", num);

        history.setArguments(args);

        return history;
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {

        View view = inflater.inflate(R.layout.history, container, false);

        return view;
    }

    @Override
    public void onActivityCreated(Bundle savedInstanceState) {
        super.onActivityCreated(savedInstanceState);
        setListAdapter(new ArrayAdapter<String>(getActivity(),
                android.R.layout.simple_list_item_1, android.R.id.text1,
                values));
    }
}

I figured it out after getting some sleep. 我睡了一觉后弄清楚了。 I was importing android.app.ListFragment instead of android.support.v4.app.ListFragment 我导入android.app.ListFragment而不是android.support.v4.app.ListFragment

I think you will have to typecast to fragment before returning. 我想你必须在返回之前进行类型转换。 So try this 所以试试吧

Fragment history = HistoryFragment.newInstance(i);
return  history;

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM