翻訳アニメーションを使用して、画像ビューを現在の位置から画面上の固定位置に移動したいと考えています。また、アニメーションの変換方法と、それが正確に受け入れるパラメーターを知りたいですか?
私のコードは...
RelativeLayout.LayoutParams lParams = (LayoutParams) spreadImage
.getLayoutParams();
TranslateAnimation ta
ta = new TranslateAnimation(lParams.leftMargin,
randomLeftMarginsList.get(currentSpreadIndex),
lParams.topMargin,
ta.setAnimationListener(this);
ta.setDuration(ApplicationConstant.PUZZLE_GAME_IMAGE_SPREADING_TIME);
spreadImage.startAnimation(ta);
前もって感謝します。