在android中,有的时候要做一个无标题的窗口,包括没状态栏的,有两种方法实现:

1 在XML配置文件中:
<?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>

就是设置主题为Theme.NoTitleBar.Fullscreen,

2 在代码中也可以设置:
requestWindowFeature(Window.FEATURE_NO_TITLE);
// hide statusbar of Android
// could also be done later
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);

更多相关文章

  1. ListView去掉分割线的几种方法
  2. Android(安卓)VideoView设置静音,Android(安卓)设置VideoView静
  3. RK3326 Android(安卓)8.1 为自己的APK的服务默认开启无障碍权限,
  4. android中TextAppearanceSpan的使用
  5. Android(安卓)ListView 一些设置 , 去除边缘阴影
  6. android TabHost小结
  7. Android基础知识大纲
  8. Android中的GridView详解
  9. android:imeOptions

随机推荐

  1. 【061】Eclipse 4 Android(安卓)使用技巧
  2. [转]Android设备的屏幕尺寸规格
  3. Android(安卓)MVVM结合DataBinding的简单
  4. android全局处理非捕捉异常
  5. Android中Socket通信之TCP与UDP传输原理
  6. [转]android 一直在最前面的浮动窗口效果
  7. 为android-support-v4.jar打包源码
  8. Android布局低级错误
  9. android 中调用接口发送短信
  10. android 发送短信的两种方式