Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不确定这是如何调用的,但我正在寻找一个选项,它可以让您的当前视图滑到一边,但仍然可见,同时出现一个新视图 - 类似于 facebook 应用程序中发生的情况,当单击左上角的按钮,即上面有 3 行的按钮 - 当出现带有搜索、新闻提要、消息等按钮的新视图时,您过去的视图(新闻提要)仍然在右侧可见。我希望这足够清楚..
谢谢!
您正在寻找的是导航抽屉。使用方法见以下链接
这是一个例子
玩得开心!
试试这个代码:
TranslateAnimation animation = new TranslateAnimation(0, view.getWidth() - amountYouStillWantToShow, 0, 0); animation.setDuration(1000); animation.setFillAfter(true); view.startAnimation(animation);
希望这可以帮助 :)