android alpha 动画移除 alpha

android alpha animation remove alpha

我的 Xml 文件中有 Imageview,我的 imageview.this 中有 0.6f alpha 是一个代码

 <ImageView
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:scaleType="centerCrop"
  android:alpha=".60"
  android:id="@+id/u_go_dashboard_bill"/>

现在我想删除带淡入淡出动画的 alpha。我的意思是 alpha 100%。我还写了一些 java 代码,但我无法更改它

  AlphaAnimation alpha = new AlphaAnimation(0.0F, 1.0F);
            alpha.setDuration(150);
            alpha.setFillAfter(true);
            dashboardBillAvatar.startAnimation(alpha);

我该如何解决我的问题?如果有人知道解决方案请帮助我 p.s 我从来没有使用过 alpha 动画,我不知道如何使用它 谢谢大家

试试这个:

ImageView yourImageView = (ImageView) findViewById(R.id.u_go_dashboard_bill);
yourImageView.animate().alpha(1.0).setDuration(150).start();