隐藏标题栏需要使用预定义样式:android:theme=”@android:style/Theme.NoTitleBar”.
隐藏状态栏: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
="de.vogella.android.temperature"
android:versionCode
="1"
android:versionName
="1.0">
<
application
android:icon
="@drawable/icon"
android:label
="@string/app_name">
<
activity
android:name=".Convert"
android:label
="@string/app_name" android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>


<
uses-sdk android:minSdkVersion="9" />
</manifest>

@Overridepublic void onCreate(Bundle savedInstanceState) {   super.onCreate(savedInstanceState);   // hide titlebar of application   // must be before setting the layout   requestWindowFeature(Window.FEATURE_NO_TITLE);   // hide statusbar of Android   // could also be done later   getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,       WindowManager.LayoutParams.FLAG_FULLSCREEN);   setContentView(R.layout.main);   text = (EditText) findViewById(R.id.EditText01);    } 

更多相关文章

  1. Android设置页面Activity全屏(隐藏导航栏、状态栏)
  2. 系统自带的主题与样式(theme and style)
  3. android中的style部分属性值介绍
  4. Android系统自带样式(@android:style/)
  5. android中的style部分属性值介绍【一】
  6. Android应用开发——系统自带样式Android:theme
  7. Android应用开发——系统自带样式Android:theme
  8. Android应用开发——系统自带样式Android:theme
  9. Android应用开发——系统自带样式Android:theme

随机推荐

  1. Android解惑 - 为什么要用Fragment.setAr
  2. Android(安卓)-- onWindowFocusChanged
  3. Android Gradle之productFlavors(定制产
  4. Android requires compiler compliance l
  5. Android Studio项目应该提交哪些文件到Gi
  6. android permission 访问权限大全
  7. Android 学习笔记 Thread (一) android线程
  8. Android(安卓)屏幕适配--最小宽度限定符
  9. Android(安卓)BaseAdapter应用
  10. android颜色对应的xml配置值,颜色表