Chinaunix首页 | 论坛 | 博客
  • 博客访问: 548365
  • 博文数量: 179
  • 博客积分: 3845
  • 博客等级: 中校
  • 技术积分: 2003
  • 用 户 组: 普通用户
  • 注册时间: 2010-08-16 21:25
文章分类
文章存档

2012年(74)

2011年(105)

分类: 嵌入式

2011-07-18 16:27:31

在开发中我们经常需要把我们的应用设置为全屏,这里我所知道的有俩中方法,一中是在代码中设置,另一种方法是在配置文件里改!

 

一、在代码中设置:

package com.android.tutor;
  1. import android.app.Activity;
  2. import android.os.Bundle;
  3. import android.view.Window;
  4. import android.view.WindowManager;
  5. public class OpenGl_Lesson1 extends Activity {
  6.     public void onCreate(Bundle savedInstanceState) {
  7.         super.onCreate(savedInstanceState);
  8.        //无title
  9.        requestWindowFeature(Window.FEATURE_NO_TITLE);
  10.         //全屏
  11.        getWindow().setFlags(WindowManager.LayoutParams. FLAG_FULLSCREEN ,
  12.                       WindowManager.LayoutParams. FLAG_FULLSCREEN);
  13.          
  14.         setContentView(R.layout.main);
  15.     }
  16. }

在这里要强调一点,设置全屏的俩段代码必须在setContentView(R.layout.main) 之前,不然会报错。

 

二、在配置文件里修改(android:theme="@android:style/Theme.NoTitleBar.Fullscreen"):


  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android=""
  3.       package="com.android.tutor"
  4.       android:versionCode="1"
  5.       android:versionName="1.0">
  6.     <application android:icon="@drawable/icon" android:label="@string/app_name">
  7.         <activity android:name=".OpenGl_Lesson1"
  8.                  android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
  9.                   android:label="@string/app_name">
  10.             <intent-filter>
  11.                 <action android:name="android.intent.action.MAIN" />
  12.                 <category android:name="android.intent.category.LAUNCHER" />
  13.             </intent-filter>
  14.         </activity>
  15.     </application>
  16.     <uses-sdk android:minSdkVersion="7" />
  17. </manifest>

在这里我还想说明一下,用前者在我们应用运行后,会看到短暂的状态栏,然后才全屏,而第二种方法是不会有这种情况的,所以我建议

大家使用后者! 谢谢~

阅读(641) | 评论(0) | 转发(1) |
给主人留下些什么吧!~~