Android activity半透明的效果
2010-09-10 00:25:00 来源:WEB开发网res/values/styles.xml
Xml代码
1.< resources>
2. < style name="Transparent
3.">
4. < item name="android:windowBackground">@color/transparent_background
5. < item name="android:windowNoTitle">true
6. < item name="android:windowIsTranslucent">true
7. < item name="android:windowAnimationStyle">@+android:style/Animation.Translucent
8.
9.< /resources>
< resources>
< style name="Transparent
">
< item name="android:windowBackground">@color/transparent_background
< item name="android:windowNoTitle">true
< item name="android:windowIsTranslucent">true
< item name="android:windowAnimationStyle">@+android:style/Animation.Translucent
< /style>
< /resources> res/values/color.xml
Xml代码
1.< ?xml version="1.0" encoding="utf-8"?>
2.< resources>
3. < color name="transparent_background">#50000000
4.< /resources>
< ?xml version="1.0" encoding="utf-8"?>
< resources>
< color name="transparent_background">#50000000
< /resources>
注意:color.xml的#5000000前两位是透明的效果参数从00--99(透明--不怎么透明),后6位是颜色的设置
YXvKDw'95
manifest.xml
Xml代码
1.< activity android:name=".TransparentActivity" android:theme="@style/Transparent">
2.< /activity>
< activity android:name=".TransparentActivity" android:theme="@style/Transparent">
< /activity>
java代码
Java代码
1.public void onCreate(Bundle savedInstanceState) {
2. super.onCreate(savedInstanceState);
3. setTheme(R.style.Transparent);
4. setContentView(R.layout.transparent);
5.}
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setTheme(R.style.Transparent);
setContentView(R.layout.transparent);
} 配置结束!
- ››Android 当修改一些代码时,使用什么编译命令可以最...
- ››Android 如何添加一个apk使模拟器和真机都编译进去...
- ››Android 修改Camera拍照的默认保存路径
- ››Android 如何修改默认输入法
- ››android开发中finish()和System.exit(0)的区别
- ››Android手势识别简单封装类
- ››android中查看项目数字证书的两种方法
- ››Android中获取IMEI码的办法
- ››android 相机报错 setParameters failed
- ››Android重启运用程序的代码
- ››Android为ListView的Item设置不同的布局
- ››android bitmap与base64字符串的互相转换
更多精彩
赞助商链接