导航抽屉从顶部滑动

时间:2016-07-13 01:23:50

标签: android android-navigation-drawer

我想让导航抽屉从上到下滑动。我在很多应用程序中看到过这种类型的设计。实际上我想像这样进行导航https://play.google.com/store/apps/details?id=com.yetistep.merchant.allgirlstore是否有可用于此的库链接?

1 个答案:

答案 0 :(得分:1)

你不需要图书馆。

将您的项目/活动创建为导航抽屉活动 if you create an activity it should be like this

你想全屏显示你的应用吗? 如果是的话

  super.onCreate(savedInstanceState);
    /////////// add this line below 
            getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
////////// set content below this 
setContentView(R.layout.activity_main);

或者如果您在使用导航抽屉活动时遇到问题。 activity_main.xml content_main.xml或app_bar_main.xml提到