标签:android ar io on 文件 cti as line res
一、设置图片背景
首先你先将一个的背景图片存入工程中res/drawble(当然drawble-hdpi、drawble-mdpi、drawble-ldpi中一个或者几个文件夹都可)文件夹中。假如我存入的图片名称为bj.png
第一种,在对应的布局文件(自动生成的工程默认文件是在res/layout中的main.xml)中的LinearLayout(默认)属性中添加android:background="@drawable/bj"
第二种,在你要添加背景的activity的类文件中setContentView(R.layout.main);(默认)之后添加一句getWindow().setBackgroundDrawableResource(R.drawable.bj);
两种方法都能实现在activity中添加背景,第二种方法一定要先setContentView()再设背景,不然报错
二、设置透明度
View v = findViewById(R.id.content);//找到你要设透明背景的layout 的id
v.getBackground().setAlpha(100);//0~255透明度值
三、设置背景颜色
在layout中添加“andriod:background=‘#fff‘"
标签:android ar io on 文件 cti as line res
原文地址:http://www.cnblogs.com/peterpc/p/4170205.html