0
我正在構建我正在開發的應用程序的設計,並且我試圖讓圖像淡入屏幕。但是,圖像在轉換成功時仍然不可見。這是代碼:試圖動畫圖像的阿爾法
facebookLoginButton = (ImageView)findViewById(R.id.facebookLoginButton); // Start of facebookLoginButton code
facebookLoginButton.setTranslationY(250f);
facebookLoginButton.setImageAlpha(0);
facebookLoginButton.animate().translationYBy(-250f).alpha(1).setDuration(1500); // End of facebookLoginButton code
我知道,因爲當我刪除facebookLoginButton.setImageAlpha(0);
,我看到的圖像移動到屏幕上的圖像成功移動。圖像如何保持隱形?
注意:應用程序沒有功能,這就是爲什麼我的按鈕是ImageView。
謝謝你教我新的東西。但是,圖像仍然不可見。 –
@ConnectionCoder想通了,檢查編輯。 – Bryan
哇,謝謝你提供這個新信息!現在,我不必將圖像屬性下的初始Alpha設置爲0。非常感謝你! –