前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >AndroidManifest.xml配置文件 android.theme大全权限设置Android Permission中英对照

AndroidManifest.xml配置文件 android.theme大全权限设置Android Permission中英对照

作者头像
欢醉
发布2018-01-22 11:10:17
7840
发布2018-01-22 11:10:17
举报
文章被收录于专栏:james大数据架构

AndroidManifest.xml启动文件

主activity:

代码语言:js
复制
<activity
            android:name="com.example.android01.MainActivity"
            android:label="@string/app_name" 
android:theme="@android:style/Theme.NoTitleBar>
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

android.theme大全

•android:theme="@android:style/Theme.Dialog"   将一个Activity显示为能话框模式

•android:theme="@android:style/Theme.NoTitleBar"  不显示应用程序标题栏

•android:theme="@android:style/Theme.NoTitleBar.Fullscreen"  不显示应用程序标题栏,并全屏

•android:theme="Theme.Light"  背景为白色

•android:theme="Theme.Light.NoTitleBar"  白色背景并无标题栏 

•android:theme="Theme.Light.NoTitleBar.Fullscreen"  白色背景,无标题栏,全屏

•android:theme="Theme.Black"  背景黑色

•android:theme="Theme.Black.NoTitleBar"  黑色背景并无标题栏

•android:theme="Theme.Black.NoTitleBar.Fullscreen"    黑色背景,无标题栏,全屏

•android:theme="Theme.Wallpaper"  用系统桌面为应用程序背景

•android:theme="Theme.Wallpaper.NoTitleBar"  用系统桌面为应用程序背景,且无标题栏

•android:theme="Theme.Wallpaper.NoTitleBar.Fullscreen"  用系统桌面为应用程序背景,无标题栏,全屏

•android:theme="Translucent"

•android:theme="Theme.Translucent.NoTitleBar"

•android:theme="Theme.Translucent.NoTitleBar.Fullscreen"

•android:theme="Theme.Panel"

•android:theme="Theme.Light.Panel"

权限设置Android Permission中英对照

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2014-03-12 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • android.theme大全
  • 权限设置Android Permission中英对照
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档