Android and setting alpha for (image) view alpha

后端 未结 9 1380
终归单人心
终归单人心 2020-11-29 00:20

Is there really no XML attribute counterpart to setAlpha(int)?

If not, what alternatives are there?

9条回答
  •  挽巷
    挽巷 (楼主)
    2020-11-29 00:43

    Use this form to ancient version of android.

    ImageView myImageView;
    myImageView = (ImageView) findViewById(R.id.img);
    
    AlphaAnimation alpha = new AlphaAnimation(0.5F, 0.5F);
    alpha.setDuration(0); 
    alpha.setFillAfter(true); 
    myImageView.startAnimation(alpha);
    

提交回复
热议问题