设置TextView透明

来源:互联网 发布:网页js幻灯片代码 编辑:程序博客网 时间:2024/06/07 05:50
 

--------------------- 设置TextView为不可见 ----------------------
tv.setTextColor(0x00000000); //设置文字颜色为透明
tv.setBackgroundColor(0x00ffffff);//把背景颜色设置为透明
tv.setTextColor(0xFF000000); //设置文字颜色为不透明

--------------------- 设置EditText为不可见 -----------------------

 et.setTextColor(0x00000000); //设置文字颜色为透明

 et.setBackgroundColor(0x00ffffff); //把背景颜色设置为透明
 et.setTextColor(0xFF000000); //设置文字颜色为不透明

原创粉丝点击