方法一:

通过Theme.Translucent

            @android:style/Theme.Translucent            @android:style/Theme.Translucent.NoTitleBar            @android:style/Theme.Translucent.NoTitleBar.Fullscreen

只需要在Manifest中需要透明的Activity内设置theme为以上任意一个就可以了

        <activity            android:name="com.vixtel.simulate.MainApp"            android:configChanges="keyboardHidden|orientation"            android:label="@string/app_name"            android:screenOrientation="portrait"            android:theme="@android:style/Theme.Translucent.NoTitleBar" >            <intent-filter>                <action android:name="android.intent.action.MAIN" />                <category android:name="android.intent.category.LAUNCHER" />            </intent-filter>        </activity>


方法二:

自定义style,就像自定义Dialog的style一样,在res-values-color.xml中添加透明颜色值:

<?xml version="1.0" encoding="UTF-8"?><resources>    <color name="transparent">#0000</color></resources>

在res-values-styles.xml中添加如下:

    <style name="myTransparent">        <item name="android:windowBackground">@color/transparent</item>        <item name="android:windowNoTitle">true</item>        <item name="android:windowIsTranslucent">true</item>        <item name="android:windowAnimationStyle">@android:style/Animation.Translucent</item>    </style>

在Manifest中中需要透明的Activity内设置theme为我们自定义的即可

android:theme="@style/myTransparent"




运行程序后,就全透明了,看得见背景下的所有东西可以却都操作无效。


更多相关文章

  1. View类的XML属性、相关方法及说明
  2. Android(安卓)RadioGroup 设置默认值之后 RadioButton互斥
  3. android:configChanges属性
  4. Android(安卓)AndBox 安安卜1.3发布
  5. Android小知识7
  6. android 开发问题集,android问题总结,android错误解决收集
  7. Android(安卓)Notification 通知
  8. 通过AndroidTestCase来进行android 单元测试
  9. Android设置Settings实现:PreferenceActivity【1】

随机推荐

  1. 在LispWorks中使用Common Lisp语言构建iO
  2. 关于android 天气预报的源码
  3. Android Mediarecorder录制的时候屏蔽掉
  4. Android RecyclerView左划删除和长按删除
  5. Android(安卓)include 标签
  6. android:state_pressed是什么意思?
  7. Android实战技巧之四十八:Android上的Java
  8. Android开发资料集合
  9. cocos2dx 3.x使用cocostudio编辑的ui设置
  10. RecyclerView 局部更新