Android 设置透明按钮

修改配置文件

动态设置

btn=(Button)findViewById(R.id.btnAppMore);
btn.setTextColor(Color.WHITE);
btn.setBackgroundColor(Color.TRANSPARENT); //背景透明
btn.getBackground().setAlpha(int); //int 在0-255之间, 设置半透明

 

你可能感兴趣的:(Android 设置透明按钮)