gpt4 book ai didi

android - 如何在一定延迟时间后隐藏ActionBar和NavigationBar?

转载 作者:太空宇宙 更新时间:2023-11-03 12:36:18 26 4
gpt4 key购买 nike

我会在显示未被触摸的几秒钟后隐藏我的应用程序的导航栏和操作栏,并将当前 View 扩展到全屏。然后,如果用户触摸屏幕(或者如果他向下滑动则更好),再次使两者可见。怎么办?

最佳答案

您可以使用处理程序延迟某些操作。

 Handler h = new Handler();

h.postDelayed(new Runnable() {

@Override
public void run() {
// DO DELAYED STUFF
getActionBar().hide();
}
}, delaytime); // e.g. 3000 milliseconds

The actions you take inside the run() method will be executed after the delay-time you set.

关于android - 如何在一定延迟时间后隐藏ActionBar和NavigationBar?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18674670/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com