首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Android >

android全屏的步骤

2013-03-14 
android全屏的方法activityandroid:name.AppStartandroid:theme@android:style/Theme.NoTitleBar.Fu

android全屏的方法
<activity android:name=".AppStart" android:theme="@android:style/Theme.NoTitleBar.Fullscreen" android:screenOrientation="portrait" >

?2:代码中方法:

?

          //无标题        requestWindowFeature(Window.FEATURE_NO_TITLE);        //全屏        getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);        setContentView(view);

?

热点排行