易网时代-编程资源站
Welcome
微信登录
编程资源
图片资源库
蚂蚁家优选
PDF转换器
软件资源
软件开发
、
小程序制作
、
系统集成与运维
、
空间租用
、
硬件开发
、
视频监控
、
技术咨询与支持
——联系电话:0311-88999002/88999003
首页
/
操作系统
/
Linux
/
Android TextView文字透明度和背景透明度设置
textview1.setTextColor(Color.argb(255, 0, 255, 0)); //文字透明度
最关键部分,设置字体透明度 argb(Alpha, R, G, B)
package
net.Android.touming;
import
android.widget.TextView;
import
android.os.Bundle;
import
android.view.ViewGroup;
import
android.app.Activity;
import
android.graphics.Color;
import
android.widget.LinearLayout;
public
class
touming
extends
Activity {
final
int
WRAP_CONTENT = ViewGroup.LayoutParams.WRAP_CONTENT;
public
void
onCreate(Bundle icicle) {
super
.onCreate(icicle);
LinearLayout linearLayout =
new
LinearLayout(
this
);
linearLayout.setOrientation(LinearLayout.VERTICAL);
setContentView(linearLayout);
TextView textview1 =
new
TextView(
this
);
textview1.setText(
"全部不透明=255"
);
//textview1.setBackgroundColor(Color.argb(255, 0, 255, 0)); //背景透明度
textview1.setTextColor(Color.argb(
255
,
0
,
255
,
0
));
//文字透明度
linearLayout.addView(textview1,
new
LinearLayout.LayoutParams(WRAP_CONTENT,
WRAP_CONTENT));
TextView textview2 =
new
TextView(
this
);
textview2.setText(
"部分透分155"
);
textview2.setBackgroundColor(Color.argb(
155
,
0
,
255
,
0
));
//背景透明度
textview2.setTextColor(Color.argb(
155
,
0
,
255
,
0
));
//文字透明度
linearLayout.addView(textview2,
new
LinearLayout.LayoutParams(WRAP_CONTENT,
WRAP_CONTENT));
TextView textview3 =
new
TextView(
this
);
textview3.setText(
"部分透明55"
);
textview3.setBackgroundColor(Color.argb(
55
,
0
,
255
,
0
));
///背景透明度
textview3.setTextColor(Color.argb(
55
,
0
,
255
,
0
));
//文字透明度
linearLayout.addView(textview3,
new
LinearLayout.LayoutParams(WRAP_CONTENT,
WRAP_CONTENT));
TextView textview4 =
new
TextView(
this
);
textview4.setText(
"全部透明0"
);
//textview4.setBackgroundColor(Color.argb(0, 0, 255, 0)); //背景透明度
textview4.setTextColor(Color.argb(
0
,
0
,
255
,
0
));
//文字透明度
linearLayout.addView(textview4,
new
LinearLayout.LayoutParams(WRAP_CONTENT,
WRAP_CONTENT));
}
}
收藏该网址
版权所有©石家庄振强科技有限公司2024
冀ICP备08103738号-5
网站地图