码迷,mamicode.com
首页 > 移动开发 > 详细

Android Translucent Activity

时间:2014-12-26 14:50:41      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:android translucent activity

在AndroidManifest.xml中相应的activity标签处添加如下内容即可得到透明Activity:
android:theme="@android:style/Theme.Translucent"

示例如下:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="cn.anarticle.app" >

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="cn.anarticle.app.MainActivity"
            android:label="@string/app_name"
            android:theme="@android:style/Theme.Translucent">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>


本文出自 “Frank” 博客,请务必保留此出处http://zengfanhong.blog.51cto.com/8894077/1596219

Android Translucent Activity

标签:android translucent activity

原文地址:http://zengfanhong.blog.51cto.com/8894077/1596219

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!