java - 返回类型与 FragmentPagerAdapter.getItem(int) 不兼容 更多错误

标签 java android android-fragments

我收到代码底部的 public void Fragment getItem(intposition) 的返回类型与 FragmentPagerAdapter.getItem(int) 不兼容。错误来自 fragment 。

我发现了一些与此错误相关的主题,并且我尝试通过它们来解决该问题,但似乎没有任何方法可以解决该错误,或​​者更确切地说,它修复了一个错误,然后又出现了 5 个其他错误,我尝试修复这些错误并再次修复出现 30 个错误。有任何想法吗?

我已经更改了 import android.app.Fragment;导入 android.support.v4.app.Fragment;以及其他一些导入更改,并将其归结为这一错误。任何帮助将不胜感激。谢谢!

我包含了大部分代码,因为我不确定我是否在其他地方犯了错误。我相信这与导入有关,但我尝试了很多差异组合,但没有成功。

package com.example.hellofragsandwich;

import java.util.Locale;

import android.app.Activity;
import android.app.ActionBar;
import android.support.v4.app.Fragment;
import android.app.FragmentManager;
import android.app.FragmentTransaction;
import android.support.v4.app.FragmentPagerAdapter;
import android.os.Bundle;
import android.support.v4.app.FragmentActivity;
import android.support.v4.view.ViewPager;
import android.view.Gravity;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;

public class MainActivity extends FragmentActivity implements ActionBar.TabListener, Communicator {


    public final int TOTAL_FRAGMENTS=7;
    Fragment fragment_0 = new Fragment_0();
    Fragment fragment_1 = new Fragment_1();
    Fragment fragment_2 = new Fragment_2();
    Fragment fragment_3 = new Fragment_3();
    Fragment fragment_4 = new Fragment_4();
    Fragment fragment_5 = new Fragment_5();


    SectionsPagerAdapter mSectionsPagerAdapter;


    ViewPager mViewPager;

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

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

        // Create the adapter that will return a fragment for each of the three
        // primary sections of the activity.
        mSectionsPagerAdapter = new SectionsPagerAdapter(getSupportFragmentManager());

        // Set up the ViewPager with the sections adapter.
        mViewPager = (ViewPager) findViewById(R.id.pager);
        mViewPager.setAdapter(mSectionsPagerAdapter);

        // When swiping between different sections, select the corresponding
        // tab. We can also use ActionBar.Tab#select() to do this if we have
        // a reference to the 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++) {
            // Create a tab with text corresponding to the page title defined by
            // the adapter. Also specify this Activity object, which implements
            // the TabListener interface, as the callback (listener) for when
            // this tab is selected.
            actionBar.addTab(actionBar.newTab()
                    .setText(mSectionsPagerAdapter.getPageTitle(i))
                    .setTabListener(this));
        }
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {

        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        // Handle action bar item clicks here. The action bar will
        // automatically handle clicks on the Home/Up button, so long
        // as you specify a parent activity in AndroidManifest.xml.
        int id = item.getItemId();
        if (id == R.id.action_settings) {
            return true;
        }
        return super.onOptionsItemSelected(item);
    }

    @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 onTabUnselected(ActionBar.Tab tab,
            FragmentTransaction fragmentTransaction) {
    }

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

    /**
     * A {@link FragmentPagerAdapter} that returns a fragment corresponding to
     * one of the sections/tabs/pages.
     */
    public class SectionsPagerAdapter extends FragmentPagerAdapter {

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

        @Override
        public Fragment getItem(int position) {
            // getItem is called to instantiate the fragment for the given page.
            // Return a PlaceholderFragment (defined as a static inner class
            // below).
            Fragment fragment = null;
            switch (position) {
            case 0:
                return fragment_0;
            case 1:
                return fragment_1;      
            case 2:
                return fragment_2;
            case 3:
                return fragment_3;
            case 4:
                return fragment_4;      
            case 5:
                return fragment_5;
            case 6:
                return fragment_6;
            }
            return fragment;

        }


}

最佳答案

如果您使用的是来自 v13 支持库的 import android.support.v13.app.FragmentPagerAdapter;,您应该使用 android.app.Fragment 而不是 v4 之一。 (对于 v13,您应该使用 getFragmentManager())

或者,如果您想使用android.support.v4.app.Fragment,您应该使用android.support.v4.app.FragmentPagerAdapter而不是v13(使用v4)您应该使用 getSupportFragmentManager()) 的 fragment

关于java - 返回类型与 FragmentPagerAdapter.getItem(int) 不兼容 更多错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23174403/

相关文章:

java - 删除 Java 结果集中的重复行

java - 支持 Javascript 和 CSS 的 JEditorPane

android - 为什么 Android 蓝牙会在几分钟后停止接收字节?

android - fopen() 不重置文件

android - 使用 fragment 处理 setDisplayHomeAsUpEnabled

java - 如何在Spring MVC框架中从jsp获取url路径

java - 无法从同一 Activity 更改 Fragment 内 TextView 的文本

android - Android 上持久移动连接的最佳实践?

java - 如何从主 Activity 调用 fragment 方法

Android:从后台堆栈中删除所有 FragmentTransactions