我的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"/>现在我想删除带有淡入淡出的.i意味着alpha 100%的动画,我也写了一些java代码,但是我不能改变它
AlphaAnimation alpha = new AlphaAnimation(0.0F, 1.0F);
alpha.setDuration(150);
alpha.setFillAfter(true);
dashboardBillAvatar.startAnimation(alpha);我如何解决我的问题?如果有人知道解决方案,请帮助我,我从来没有工作过阿尔法动画,我不知道如何使用它,谢谢大家
发布于 2015-11-19 07:29:15
试试这个:
ImageView yourImageView = (ImageView) findViewById(R.id.u_go_dashboard_bill);
yourImageView.animate().alpha(1.0).setDuration(150).start();https://stackoverflow.com/questions/33792043
复制相似问题