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

一、在代码中设置:

package com.android.tutor;import android.app.Activity;import android.os.Bundle;import android.view.Window;import android.view.WindowManager;public class OpenGl_Lesson1 extends Activity {    public void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);       //无title         requestWindowFeature(Window.FEATURE_NO_TITLE);          //全屏         getWindow().setFlags(WindowManager.LayoutParams. FLAG_FULLSCREEN ,                          WindowManager.LayoutParams. FLAG_FULLSCREEN);                  setContentView(R.layout.main);    }}

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

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

<?xml version="1.0" encoding="utf-8"?><manifest xmlns:android="http://schemas.android.com/apk/res/android"      package="com.android.tutor"      android:versionCode="1"      android:versionName="1.0">    <application android:icon="@drawable/icon" android:label="@string/app_name">        <activity android:name=".OpenGl_Lesson1"          android:theme="@android:style/Theme.NoTitleBar.Fullscreen"                  android:label="@string/app_name">            <intent-filter>                <action android:name="android.intent.action.MAIN" />                <category android:name="android.intent.category.LAUNCHER" />            </intent-filter>        </activity>    </application>    <uses-sdk android:minSdkVersion="7" /></manifest> 

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

大家使用后者! 谢谢~

更多相关文章

  1. android二维码扫描(最近做的项目中用到的)
  2. 自定义字体主题+自定义背景+设置radiobutton的字体的选中状态的
  3. Android开发中Material Design风格设置页面的实践
  4. Android命令行创建并运行 AVD模拟器
  5. android仿win8 metro磁贴布局
  6. Android在onTouchEvent或setOnTouchListener中处理长按事件
  7. Android(安卓)- LayoutAnimation 动画效果 - 示例
  8. Retrofit2.0 增加公共参数
  9. Android中实现Runnable接口简单例子

随机推荐

  1. android调用手机铃声
  2. ERROR: Could not find com.android.tool
  3. Android开发20——单个监听器监听多个按
  4. 带有CheckBox的ListView,实现删除和选中功
  5. Android开发者指南(12) —— Android(安
  6. Android RILD学习
  7. 【Android自学笔记】Android获取手机和存
  8. Android实现简单购物车功能
  9. Android(安卓)NDK 编译移植FFmpeg2.5
  10. 剖析Android程序结构-----Android新手入