我想像我的Facebook应用程序一样向我的应用添加幻灯片菜单.我在互联网上阅读了很多关于图书馆的内容,但没有一个对我有用.什么是我可以用于此的最好的东西/图书馆,有人可以解释我如何使用它?
编辑 这是我的布局:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@drawable/zwemfest" >"
<com.devspark.sidenavigation.SideNavigationView
android:id="@+id/side_navigation_view"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<Button
android:id="@+id/button1"
android:layout_width="183dp"
android:layout_height="113dp"
android:layout_weight="0.91"
android:text="Button" />
</com.devspark.sidenavigation.SideNavigationView>
</RelativeLayout>
Run Code Online (Sandbox Code Playgroud)
但我没有看到任何按钮或背景图像.你知道什么出错了吗?
android ×1