我正在寻找类似于新 Facebook 应用程序为 Android/ios 移动应用程序实现的功能。我指的是通过手指移动打开的侧面导航菜单。像这样的东西
有没有我可以检查的库或示例?
非常感谢。
将 SideNavigationView 用于像 facebook 这样的侧边菜单。但是你需要一个可以从这里下载的库“ https://github.com/johnkil/SideNavigation ”。
使用它的代码是:
SideNavigationView sideNavigationView;
sideNavigationView = (SideNavigationView)findViewById(R.id.side_navigation_view);
sideNavigationView.setMenuItems(R.menu.sliding);
sideNavigationView.toggleMenu();
现在,制作要在幻灯片菜单中显示的菜单。
一切顺利....
Like Wubao Li said , this now is supported by android in the DrawerLayout
Here is a tutorial of how to use it http://developer.android.com/training/implementing-navigation/nav-drawer.html
And here a doc about how it should work http://developer.android.com/design/patterns/navigation-drawer.html
使用 android 支持包修订版 13(2013 年 5 月),有 DrawerLayout 用于创建可以从窗口边缘拉入的导航抽屉。而且,导航抽屉现在是一种设计模式。http://developer.android.com/tools/extras/support-library.html
这是我的实现 https://github.com/MihaelIsaev/Swiper 享受 :)