方法一:
通过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"
运行程序后,就全透明了,看得见背景下的所有东西可以却都操作无效。
以上就是小编为大家带来的Android设置Activity背景为透明style的简单方法(必看)全部内容了,希望大家多多支持编程网~
您可能感兴趣的文章:Android动画之补间动画(Tween Animation)实例详解Android动画之渐变动画(Tween Animation)详解 (渐变、缩放、位移、旋转)Android开发之图形图像与动画(二)Animation实现图像的渐变/缩放/位移/旋转Android中利用matrix 控制图片的旋转、缩放、移动android 多点触摸图片缩放的具体实现方法Android 图片缩放与旋转的实现详解Android编程实现popupwindow弹出后屏幕背景变成半透明效果Android编程实现设置按钮背景透明与半透明及图片背景透明的方法android 对话框弹出位置和透明度的设置具体实现方法Android应用中设置alpha值来制作透明与渐变效果的实例Android实现屏幕旋转方法总结Android开发 旋转屏幕导致Activity重建解决方法Android Tween动画之RotateAnimation实现图片不停旋转效果实例介绍Android编程中调用Camera时预览画面有旋转问题的解决方法Android补间动画基本使用(位移、缩放、旋转、透明)