设置控件透明度

来源:互联网 发布:mac显示桌面快捷键 编辑:程序博客网 时间:2024/05/23 13:07
第1种方法:

tv.setBackgroundColor(Color.argb(255, 0, 255, 0)); //背景透明度tv.setTextColor(Color.argb(255, 0, 255, 0));   //文字透明度

第2种方法:

tv.setTextColor(0xffff00ff);

第3种方法:

在xml文件中直接设置颜色值,同下。

Button或者ImageButton的背景设为透明或者半透明

xml文件

半透明

<Button Android:background="#e0000000" ... />
透明

<Button android:background="#00000000" ... />
Java代码

View v = findViewById(R.id.xx);//找到你要设透明背景的layout 的id
v.getBackground().setAlpha(100);//0~255透明度值
http://dwtedx.com/itshare_126.html
0 0
原创粉丝点击