好吧任何視圖,所以我有一個觀點在那裏它被用下面的代碼動畫:如何移動和淡出與動畫
RelativeLayout rl = (RelativeLayout) findViewById(R.id.productPage_parentLayout_RL);
ImageView iv = new ImageView(ProductPage.this);
imageLoader.DisplayImage(FULL_PRODUCT_INFO.getFirstImage(), iv);
Animation animation = new TranslateAnimation(0, helper.getDeviceWidth() - 100,0, 0);
animation.setDuration(1000);
animation.setFillAfter(true);
rl.addView(iv);
有了這個代碼,視圖從屏幕左側開始並移動到屏幕的盡頭,但我也想淡出視圖並最終隱藏/摧毀它。我試圖搜索與此相關的任何內容,但找不到任何內容。
任何幫助表示讚賞。
差不多......我也使用過這種方法,但它在移動時需要淡出,並在到達末尾時隱藏起來。 –
在這種情況下,您需要使用AnimationSet –