您的位置:首页 > 移动开发 > Android开发

android实现activity半透明色

2015-08-14 10:36 369 查看
首先设定该activity的theme如下

android:theme="@android:style/Theme.Translucent.NoTitleBar"

此时该activity由android系统处理为透明色的

为了使activity有一定的半透明效果,可以在activity的xml布局文件中中加一个属性

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:background="#80000000" >

其中#80为背景的透明度,可以根据喜好来进行设置,下图是实现的效果

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: