今天试着做activity半透明的效果,做出来之后才发现想复杂了!很简单的几句就可以实现,不多说了,贴代码!

res/values/styles.xml

<resources>  <style name="Transparent">    <item name="android:windowBackground">@color/transparent_background</item>    <item name="android:windowNoTitle">true</item>    <item name="android:windowIsTranslucent">true</item>      <item name="android:windowAnimationStyle">@+android:style/Animation.Translucent</item>  </style></resources>

res/values/color.xml

<?xml version="1.0" encoding="utf-8"?><resources>  <color name="transparent_background">#50000000</color></resources>

注意:color.xml的#5000000前两位是透明的效果参数从00--99(透明--不怎么透明),后6位是颜色的设置

YXvKDw'95

manifest.xml

<activity android:name=".TransparentActivity" android:theme="@style/Transparent"></activity>

java代码

public void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setTheme(R.style.Transparent);         setContentView(R.layout.transparent);}

配置结束!

更多相关文章

  1. Gears Android WIFI/基站定位源代码分析
  2. 安卓学习(初)第三章(2)(《第一行代码》)
  3. 《第一行代码Android》阅读笔记
  4. android绘图Path类仿加速球水面波动效果
  5. 白话开发——Android Studio代码调试技巧篇

随机推荐

  1. RK3288 android 5.1 HDMI 喇叭同时输出声
  2. Ant编译android工程之环境搭建
  3. 植物大战僵尸2 Android破解版,免费买道具
  4. Android launcher3 -- launcher3源码1
  5. Android Dialog实现全选反选
  6. ListView控件开发中常见的问题
  7. TCL 雏鹰飞翔计划 Android篇
  8. Next Steps
  9. Android init.rc BOOTCLASSPATH
  10. Android控件架构详解