简体   繁体   English

在片段中带有选项卡的导航抽屉

[英]Navigation drawer with tabs in fragment

I am making an android app .我正在制作一个 android 应用程序。 I am using navigation drawer and some of the fragments which i am inflating using navigation drawer contain tab layout and some are normal fragments with textview .我正在使用导航抽屉,我使用导航抽屉膨胀的一些片段包含选项卡布局,有些是带有 textview 的普通片段。

I am facing 2 issues that when我面临两个问题,当

  1. i am opening the navigation drawer item with tabs afterthat its automatically keeping those tabs in the view even for the fragments that are not with tabs.我正在打开带有标签的导航抽屉项目,然后它会自动将这些标签保留在视图中,即使对于没有标签的片段也是如此。

  2. When i am opening the fragment with tabs 2nd time or more .当我第二次或更多次使用标签打开片段时。 Its duplicating the tabs.它复制选项卡。 I mean if the first time no of tabs are 3 then the next time when i open the fragment the no.我的意思是,如果第一次没有选项卡是 3,那么下次当我打开片段时,没有。 of tabs get doubled.标签的数量翻了一番。

Activity with navigation drawer带有导航抽屉的活动

public class MainFeedActivity extends FragmentActivity {

public DrawerLayout mDrawerLayout;
private ListView mDrawerList;
private ActionBarDrawerToggle mDrawerToggle;

private CharSequence mDrawerTitle;
private CharSequence mTitle;
private String[] mDrawertitles;
LinearLayout drawerll;
String username;
TextView t;

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

    username = getIntent().getExtras().getString("username").toString();

    t = (TextView) findViewById(R.id.drawer_uname_tv);
    t.setText(username);

    mTitle = mDrawerTitle = getTitle();
    mDrawertitles = getResources().getStringArray(R.array.array);
    mDrawerLayout = (DrawerLayout) findViewById(R.id.drawer_layout);
    mDrawerList = (ListView) findViewById(R.id.left_drawer);
    drawerll = (LinearLayout) findViewById(R.id.drawerll);

    // set a custom shadow that overlays the main content when the drawer
    // opens
    mDrawerLayout.setDrawerShadow(R.drawable.drawer_shadow,
            GravityCompat.START);
    mDrawerList.setAdapter(new ArrayAdapter<String>(this,
            R.layout.drawer_list_item, mDrawertitles));
    mDrawerList.setOnItemClickListener(new DrawerItemClickListener());

    getActionBar().setDisplayHomeAsUpEnabled(true);

    mDrawerToggle = new ActionBarDrawerToggle(this, mDrawerLayout,
            R.drawable.ic_drawer, R.string.drawer_open,
            R.string.drawer_close) {
        public void onDrawerClosed(View view) {
            getActionBar().setTitle(mTitle);
            invalidateOptionsMenu(); // creates call to
                                        // onPrepareOptionsMenu()
        }

        public void onDrawerOpened(View drawerView) {
            getActionBar().setTitle(mDrawerTitle);
            invalidateOptionsMenu(); // creates call to
                                        // onPrepareOptionsMenu()
        }
    };
    mDrawerLayout.setDrawerListener(mDrawerToggle);

    if (savedInstanceState == null) {
        selectItem(2);
    }
}

@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) {
    // The action bar home/up action should open or close the drawer.
    // ActionBarDrawerToggle will take care of this.
    if (mDrawerToggle.onOptionsItemSelected(item)) {
        return true;
    }
    return true;

}

private class DrawerItemClickListener implements
        ListView.OnItemClickListener {
    @Override
    public void onItemClick(AdapterView<?> parent, View view, int position,
            long id) {

        selectItem(position);
    }
}

private void selectItem(int position) {

    if (position == 0) {

        Fragment fragment = new Home();

        FragmentManager fragmentManager = getFragmentManager();
        fragmentManager.beginTransaction()
                .replace(R.id.content_frame, fragment).commit();
        mDrawerList.setItemChecked(position, true);
        mDrawerLayout.closeDrawer(drawerll);
    }

    else if (position == 1) {

        Fragment fragment = new Statistics();

        FragmentManager fragmentManager = getFragmentManager();
        fragmentManager.beginTransaction()
                .replace(R.id.content_frame, fragment).commit();

        // update selected item and title, then close the drawer
        mDrawerList.setItemChecked(position, true);
        mDrawerLayout.closeDrawer(drawerll);

    } else {
        Fragment fragment = new Help();

        FragmentManager fragmentManager = getFragmentManager();
        fragmentManager.beginTransaction()
                .replace(R.id.content_frame, fragment).commit();

        // update selected item and title, then close the drawer
        mDrawerLayout.closeDrawer(drawerll);

    }
}

/*
 * 
 * protected boolean isOnline() { ConnectivityManager cm =
 * (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
 * NetworkInfo netInfo = cm.getActiveNetworkInfo(); if (netInfo != null &&
 * netInfo.isConnectedOrConnecting()) { return true; } else { return false;
 * } }
 */

@Override
public void setTitle(CharSequence title) {
    mTitle = title;
    getActionBar().setTitle(mTitle);
}

/**
 * When using the ActionBarDrawerToggle, you must call it during
 * onPostCreate() and onConfigurationChanged()...
 */

@Override
protected void onPostCreate(Bundle savedInstanceState) {
    super.onPostCreate(savedInstanceState);
    // Sync the toggle state after onRestoreInstanceState has occurred.

    mDrawerToggle.syncState();
}

@Override
public void onConfigurationChanged(Configuration newConfig) {
    super.onConfigurationChanged(newConfig);
    mDrawerToggle.onConfigurationChanged(newConfig);
}

/**
 * Fragment that appears in the "content_frame", shows a planet
 */

} }

Fragments碎片

  public class Home extends Fragment {

ActionBar.Tab Tab1, Tab2, Tab3;
Fragment fragmentTab1 = new Connected();
Fragment fragmentTab2 = new Disconnected();
Fragment fragmentTab3 = new AllDevices();

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

    View view = inflater.inflate(R.layout.fragment_tabs, container, false);
    ActionBar actionBar = getActivity().getActionBar();

    actionBar.setDisplayShowHomeEnabled(true);

    // Hide Actionbar Title
    actionBar.setDisplayShowTitleEnabled(true);

    // Create Actionbar Tabs
    actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);

    Tab1 = actionBar.newTab().setText("Tab1");
    Tab2 = actionBar.newTab().setText("Tab2");
    Tab3 = actionBar.newTab().setText("Tab3");

    Tab1.setTabListener(new TabListener(fragmentTab1));
    Tab2.setTabListener(new TabListener(fragmentTab2));
    Tab3.setTabListener(new TabListener(fragmentTab3));

    actionBar.addTab(Tab1);
    actionBar.addTab(Tab2);
    actionBar.addTab(Tab3);

    return view;
}

} }

Fragments:片段:

public class Help  extends Fragment {


Button b;

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
        Bundle savedInstanceState) {
    View rootView = inflater.inflate(R.layout.help, container, false);

    setHasOptionsMenu(false);
        return rootView;
}

} }

I got the solution of my problems:我得到了我的问题的解决方案:

  1. 1st problem solved with the help of denvercoder9在 denvercoder9 的帮助下解决了第一个问题

when position!= 1, you need to change the actionBar Navigation Mode.... Android ActionBar: show/hide tabs dynamically?当 position!= 1 时,您需要更改 actionBar 导航模式.... Android ActionBar:动态显示/隐藏选项卡? – denvercoder9 – denvercoder9

  1. 2nd problem's solution is I need to use this第二个问题的解决方案是我需要使用这个

ActionBar actionBar = getActivity().getActionBar(); ActionBar actionBar = getActivity().getActionBar();

    actionBar.removeAllTabs();

    actionBar.setDisplayShowHomeEnabled(true);

    actionBar.setDisplayShowTitleEnabled(true);

    actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);

in Home.java class在 Home.java 类中

This resolved the problem of tabs duplication.这解决了标签重复的问题。

Thanks Stackoverflow for helping me :)感谢 Stackoverflow 帮助我:)

I was having the same issue so the solution is simple.我遇到了同样的问题,所以解决方案很简单。

Ans 1: If you don't want Tabs in specific fragment then you can set the navigation bar as Ans 1: 如果你不想在特定片段中使用 Tabs 那么你可以将导航栏设置为

actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_STANDARD);

Ans 2: Either remove the tabs from the home fragment each time u select it or u can check if required tabs already present there then dont add any more tabs in it like this Ans 2:每次选择它时从主页片段中删除选项卡,或者您可以检查那里是否已经存在所需的选项卡,然后不要像这样在其中添加更多选项卡

int tabCount= actionBar.getTabCount();

if(tabCount!=3){
Tab1 = actionBar.newTab().setText("Tab1");
    Tab2 = actionBar.newTab().setText("Tab2");
    Tab3 = actionBar.newTab().setText("Tab3");

    Tab1.setTabListener(new TabListener(fragmentTab1));
    Tab2.setTabListener(new TabListener(fragmentTab2));
    Tab3.setTabListener(new TabListener(fragmentTab3));

    actionBar.addTab(Tab1);
    actionBar.addTab(Tab2);
    actionBar.addTab(Tab3);
}
return view;

Hope it will solve your problem希望它能解决你的问题

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

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