Android横屏,全屏设置

来源:互联网 发布:c语言病毒代码大全 编辑:程序博客网 时间:2024/05/21 10:05

全屏(隐藏通知栏和APP名称栏)

Activity里设置

this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,

WindowManager.LayoutParams.FLAG_FULLSCREEN);
requestWindowFeature(Window.FEATURE_NO_TITLE);

setContentView(R.layout.index);


横屏

manifest.xml里设置

android:screenOrientation="landscape"

原创粉丝点击