0

我在我的应用程序中提供 NavigationDrawer。

我在http://developer.android.com/training/implementing-navigation/nav-drawer.html上使用手册

/**
 * Swaps fragments in the main content view
 */
private void selectItem(int position) {
    // Create a new fragment and specify the planet to show based on
    // position
    Fragment fragment = new PlanetFragment();
    Bundle args = new Bundle();
    args.putInt(PlanetFragment.ARG_PLANET_NUMBER, position);
    fragment.setArguments(args);
    // Insert the fragment by replacing any existing fragment
    FragmentManager fragmentManager = getFragmentManager();
    fragmentManager.beginTransaction().replace(R.id.content_frame, fragment).commit();
    // Highlight the selected item, update the title, and close the drawer
    mDrawerList.setItemChecked(position, true);
    setTitle(mPlanetTitles[position]);
    mDrawerLayout.closeDrawer(mDrawerList);
}

在这里,我必须像 Fragment 一样放置我的屏幕,但现在我的屏幕是 Activity,我想以最少的代码更改从我的 Activity 移动到 Fragment。我能做什么?

4

2 回答 2

2

最好的解决方案只是从 Activity 扩展到 Fragment,将 onCreate() 更改为 onActivityCreated() 并将 layout.xml 链接移动到 onCreateView()

于 2013-10-07T13:51:38.580 回答
0

请参阅此处, 您应该能够将您的活动转换为片段活动,然后使用导航抽屉。另请参阅此处以获取示例应用程序

于 2013-10-04T08:33:26.907 回答