我的Xml文件中有Imageview,我的imageview中有0.6f alpha。这是一个代码
现在我想用淡入淡出的动画删除alpha .i意味着alpha 100%.i也写了一些java代码但我无法改变它
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"
android:alpha=".60"
android:id="@+id/u_go_dashboard_bill"/>
我如何解决我的问题?如果有人知道解决方案,请帮助我 p.s我从未使用过alpha动画,我不知道如何使用它 谢谢大家
答案 0 :(得分:1)
试试这个:
ImageView yourImageView = (ImageView) findViewById(R.id.u_go_dashboard_bill);
yourImageView.animate().alpha(1.0).setDuration(150).start();