3

我一直在尝试创建一个简单的水平滚动选项。我有 2 个 ListFragments,我想在它们之间滚动。

从 onCreateView 函数返回视图时出现“找不到源”错误。

这是我的 MainActivity 类:

public class MainActivity extends FragmentActivity implements ActionBar.TabListener {

    AppSectionsPagerAdapter mAppSectionsPagerAdapter;
    ViewPager mViewPager;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        mAppSectionsPagerAdapter = new AppSectionsPagerAdapter(getSupportFragmentManager());
        final ActionBar actionBar = getActionBar();
        actionBar.setHomeButtonEnabled(false);
        actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
        mViewPager = (ViewPager) findViewById(R.id.pager);
        mViewPager.setAdapter(mAppSectionsPagerAdapter);
        mViewPager.setOnPageChangeListener(new ViewPager.SimpleOnPageChangeListener() {
            @Override
            public void onPageSelected(int position) {
                actionBar.setSelectedNavigationItem(position);
            }
        });
        for (int i = 0; i < mAppSectionsPagerAdapter.getCount(); i++) {
            actionBar.addTab(
                    actionBar.newTab()
                            .setText(mAppSectionsPagerAdapter.getPageTitle(i))
                            .setTabListener(this));
        }
    }

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

    @Override
    public void onTabSelected(ActionBar.Tab tab, android.app.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, android.app.FragmentTransaction fragmentTransaction) {
    }

    public static class AppSectionsPagerAdapter extends FragmentPagerAdapter {

        public AppSectionsPagerAdapter(FragmentManager fm) {
            super(fm);
        }
        Fragment a;
        @Override
        public Fragment getItem(int i) {
            switch (i) {
                case 0:
                    return new FragmentA();

                default:
                    return new FragmentB();
            }
        }

        @Override
        public int getCount() {
            return 2;
        }

        @Override
        public CharSequence getPageTitle(int position) {
            return "Section " + (position + 1);
        }
    }
}

这是我的 ListFragment 类之一(第二个是相同但不同的名称和布局文件):

    public class FragmentA extends ListFragment {

        @Override
            public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
                View rootView = inflater.inflate(R.layout.favorites_layout, container, false);
                updateStationsView(0);
                return rootView;
            }
}

updateStationView 是一个填充列表的函数。删除它没有帮助,所以我认为它是无害的。

在以下内容之后立即引发错误:

return rootView;

返回到 MainActivity 的 onCreate 函数。

当我将 ListFragment 更改为简单的 Fragment 时,它可以工作。我想我缺乏一些知识来解决这个问题。我真的很想使用 ListFragment ...

有人可以帮忙吗?非常感谢您的努力。

添加 XML 文件:

活动主.xml:

<android.support.v4.view.ViewPager xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/pager"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />

收藏夹布局.xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     android:orientation="vertical"
     android:layout_width="fill_parent"
     android:layout_height="fill_parent">

   <ListView 
     android:id="@+id/list"
     android:layout_width="fill_parent"
     android:layout_height="fill_parent" />
</LinearLayout>
4

1 回答 1

1

我很确定问题是您的 ListFragment 自定义布局不包含 ListView。这些代码行导致错误,因为您需要在“favourites_layout”.xml 文件中有一个 ListView。

 @Override
 public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
      View rootView = inflater.inflate(R.layout.favorites_layout, container, false);
      updateStationsView(0);
      return rootView;
 }

ListFragment 具有由单个列表视图组成的默认布局。但是,如果您愿意,您可以通过从 onCreateView(LayoutInflater, ViewGroup, Bundle) 返回您自己的视图层次结构来自定义片段布局。为此,您的视图层次结构必须包含一个 ID 为“@android:id/list”的 ListView 对象(如果它在代码中,则为列表)

因此,您的布局可能如下所示:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     android:orientation="vertical"
     android:layout_width="fill_parent"
     android:layout_height="fill_parent">

   <ListView 
     android:id="@android:id/list"
     android:layout_width="fill_parent"
     android:layout_height="fill_parent" />
</LinearLayout>

请参阅此处了解更多信息:http: //developer.android.com/reference/android/app/ListFragment.html

于 2013-08-08T19:58:10.317 回答