本文介绍了带有操作栏的Android全屏活动的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我应该使用什么主题来隐藏通知栏但显示操作栏? (就像三星手机上的计算器一样)
what theme should I use to hide the notification bar but show the action bar? (Like calculator on Samsung phones)
推荐答案
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
将其与Theme holo一起使用**您必须通过编码来做到这一点,将其添加到setContentView()之前**
Use this with Theme holo**you have to do it through coding add this before setContentView() **
这篇关于带有操作栏的Android全屏活动的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!