导航抽屉从顶部滑动[关闭]

问题描述 投票:-5回答:1

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

android android-navigation-drawer
1个回答
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提到

© www.soinside.com 2019 - 2024. All rights reserved.