2
如何在動畫後獲取View
的Alpha /不透明度?在Android中獲取視圖的alpha /不透明度
我的fadeIn()
低於 -與端點切換相同。
public void fadeIn(View view) {
Animation animation = new AlphaAnimation(0.0f, 1.0f);
animation.setDuration(1000);
animation.setFillAfter(true);
view.startAnimation(animation);
}