我有一個LinearLayout, I am dynamically adding TextView, ImageView to that LinearLayout
,現在我已經將OnClickListener添加到這些TextViews和ImageViews。滑入和滑出動畫的佈局
我有一個arraylist其中有10個項目,使用for循環我得到每個值和顯示,因爲它的測驗應用程序我有下一個和上一個按鈕,當我點擊,我逐一顯示項目來自arraylist。 Now I need slide In and slide Out animation to apply to this Linear Layout.
我已經看到了這一點:
而且我已經試過這
slideIn = new TranslateAnimation(
TranslateAnimation.RELATIVE_TO_PARENT, 1.0f,
TranslateAnimation.RELATIVE_TO_PARENT, 0.0f,
TranslateAnimation.RELATIVE_TO_PARENT, 0.0f,
TranslateAnimation.RELATIVE_TO_PARENT, 0.0f);
slideIn.setDuration(500);
slideOut = new TranslateAnimation(
TranslateAnimation.RELATIVE_TO_PARENT, 0.0f,
TranslateAnimation.RELATIVE_TO_PARENT, -1.0f,
TranslateAnimation.RELATIVE_TO_PARENT, 0.0f,
TranslateAnimation.RELATIVE_TO_PARENT, 0.0f);
slideOut.setDuration(500);
但不工作,請在這方面的幫助。
編輯:
問題:我已經應用這個以線性佈局,但發生的事情是,當我上單擊下一步按鈕,當前的問題將左右滑動和空白屏幕,然後它會滑動並顯示下問題,但我希望一旦當前問題出現,應該在下一個問題之後。
如何將此動畫應用於視圖? –
是的好友我已經將此應用於線性佈局,但會發生什麼情況是,當我點擊下一個當前問題時,將向左滑動並出現空白屏幕,然後它會滑入並顯示下一個問題,但是我希望當前問題儘快滑過那麼應該跟着下一個問題 – Goofy
使用viewflipper和使用動畫和動畫怎麼樣? –