本文介绍了如何隐藏在pressing滑动菜单背面或同时打开一个活动的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
https://github.com/jfeinstein10/SlidingMenu
我使用这个库,我想隐藏的滑动菜单,当我打开一个新的活动
,所以,当我preSS回我不吨要出现的滑动菜单。
I am using this library, i would like to hide the sliding-menu when i open an new activity
, so that when i press back i don't want the sliding menu to appear.
@Override
public void onListItemClick(ListView lv, View v, int position, long id) {
switch (position) {
case 0:
Intent intent = new Intent("android.intent.action.Home");
getActivity().startActivity(intent);
break;
}
}
以上code是在我的 SherlockListFragment
类,我想隐藏的滑动菜单,一旦我开始了新的活动。
The above code is in my SherlockListFragment
class, i would like to hide the sliding-menu, once i start a new activity.
推荐答案
如果您已经扩展SlidingActivity,那么所有你需要的是: -
If you've extended SlidingActivity, then all you need is:-
toggle();
这应该这样做: - )
That should do it :-)
这篇关于如何隐藏在pressing滑动菜单背面或同时打开一个活动的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!