View
アニメーション化した後にアルファ/不透明度を取得するにはどうすればよいですか?
My fadeIn()
is below -fadeOut()
交換されたエンドポイントと同じです。
public void fadeIn(View view) {
Animation animation = new AlphaAnimation(0.0f, 1.0f);
animation.setDuration(1000);
animation.setFillAfter(true);
view.startAnimation(animation);
}