Android中zm切换全屏与非全屏,很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。静态方法 代码方式在Activity类OnCreate方法中设置,代码如下@O
Android中zm切换全屏与非全屏,很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。
静态方法
代码方式
在Activity类OnCreate
方法中设置,代码如下
@Overrideprotected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); requestWindowFeature(Window.FEATURE_NO_TITLE); getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN); setContentView(R.layout.activity_main);}
requestWindowFeature与getWindow().setFlags必须放在setContentView方法之前
文件配置方式
在AndroidManifest.xml文件中,找到属性,设置如下:
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
动态方法
Window方式
if (mIsFullScreen){//设置为非全屏 WindowManager.LayoutParams lp = getWindow().getAttributes(); lp.flags &= (~WindowManager.LayoutParams.FLAG_FULLSCREEN); getWindow().setAttributes(lp); getWindow().clearFlags(WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS);}else{//设置为全屏 WindowManager.LayoutParams lp = getWindow().getAttributes(); lp.flags |= WindowManager.LayoutParams.FLAG_FULLSCREEN; getWindow().setAttributes(lp); getWindow().addFlags(WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS);}
View方式
if (mIsFullScreen){//设置为非全屏 getWindow().getDecorView(). setSystemUiVisibility(View.SYSTEM_UI_FLAG_VISIBLE);}else{//设置为全屏 getWindow().getDecorView(). setSystemUiVisibility(View.SYSTEM_UI_FLAG_FULLSCREEN);}
看完上述内容是否对您有帮助呢?如果还想对相关知识有进一步的了解或阅读更多相关文章,请关注编程网精选频道,感谢您对编程网的支持。
--结束END--
本文标题: Android中zm切换全屏与非全屏
本文链接: https://lsjlt.com/news/221287.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0