在我的应用程序中,最初我将不透明度设置TextView
为 60。之后,当用户按下按钮时,我想TextView
根据按下增加它的按钮或减少它的按钮来减少或增加不透明度。我已经尝试过了,但是每次当我得到文本的不透明度时,它的 -3 或 -1 实际上不是。
public void decreaseOpacity(View v){
int op=txtView.getBackground().getOpacity();// its alwz -ve value
txtView.getBackground().setAlpha(op-1);
}