导航抽屉的新活动 - Android

时间:2014-01-12 05:34:23

标签: android android-fragments navigation-drawer

我正在尝试使用滑动导航抽屉制作Android应用。

我的导航抽屉正常工作。

我遇到的问题是在选择导航抽屉中的项目时切换活动。我读到我应该在活动中使用片段。但是,我不太清楚它是如何工作的,因为我之前从未使用过片段。

目前,当您从导航栏中选择一个项目时,它不会更改布局,只是更改屏幕上的内容(在这种情况下,更改屏幕上的数字)。我想在发生这种情况时采用不同的布局。

到目前为止,这是我的代码:

    public static class PlaceholderFragment extends Fragment {
        /**
         * The fragment argument representing the section number for this
         * fragment.
         */
        private static final String ARG_SECTION_NUMBER = "section_number";

        /**
         * Returns a new instance of this fragment for the given section
         * number.
         */
        public static PlaceholderFragment newInstance(int sectionNumber) {
            PlaceholderFragment fragment = new PlaceholderFragment();
            Bundle args = new Bundle();
            args.putInt(ARG_SECTION_NUMBER, sectionNumber);
            fragment.setArguments(args);
            return fragment;
        }

        public PlaceholderFragment() {
        }

        @Override
        public View onCreateView(LayoutInflater inflater, ViewGroup container,
                Bundle savedInstanceState) {
            View rootView;
            rootView = inflater.inflate(R.layout.fragment_main, container, false);
            TextView textView = (TextView) rootView.findViewById(R.id.section_label);
            textView.setText(Integer.toString(getArguments().getInt(ARG_SECTION_NUMBER)));
            return rootView;
        }

        @Override
        public void onAttach(Activity activity) {
            super.onAttach(activity);
            ((MainActivity) activity).onSectionAttached(
                    getArguments().getInt(ARG_SECTION_NUMBER));
        }
    }

1 个答案:

答案 0 :(得分:1)

尝试使用这种方式将活动用于导航抽屉

private void selectItem1(final int position) {
    switch (position) {
      case 1:
        Intent a = new Intent(this, MainActivity.class);
        startActivity(a);
        break;
      case 2:
        Intent b = new Intent(this, Profesori.class);
        startActivity(b);
        break;
      default:

但最好的方法是在navigationDrawer中使用Fragment 为了这样做

  

在FrameLayout中包含您的布局

将您的活动扩展为

  

YourActivity扩展片段

进行其他微小的必要更改,例如使用OnCreateView

为了在MainActivity中使用NavigationDrawer中的Fragment

public boolean onNavigationItemSelected(MenuItem item) {
  // Handle navigation view item clicks here.
  int id = item.getItemId();

  switch (id) {
    case R.id.item1:
      getSupportFragmentManager().beginTransaction().replace(R.id.fragment1, new YourFragment1()).commit();
      break;

    case R.id.item2:
      getFragmentManager().beginTransaction().replace(R.id.fragment1, new YourFragment2()).commit();
      break;
  }
}