Android设置Activity背景为透明style的简单方法(必看)
投稿:jingxian
下面小编就为大家带来一篇Android设置Activity背景为透明style的简单方法(必看)。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧
方法一:
通过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补间动画基本使用(位移、缩放、旋转、透明)