web-dev-qa-db-ja.com

Androidアニメーションを変換-AnimationListenerを使用してビューを新しい位置に永続的に移動します

Androidアニメーションを変換します。ランダムに生成された位置(next1、next2)のImageViewがあります。3秒ごとにvoidを呼び出します。ビューの新しい位置を生成し、アニメーションを作成して移動します移動先の位置に表示します。アニメーションを変換するには、AnimationListenerを実装します。アニメーションが終了したら、Viewを新しい位置(OnAnimationEnd内)に永続的に移動します。両方の状況で同じ値(next1、next2)を使用しているため、位置は同じであると思います。ソリューションを見つける方法を教えてください。 Drawing of situation here here

 FrameLayout.LayoutParams pozice_motyl = (FrameLayout.LayoutParams)  pozadi_motyl.getLayoutParams();    
            TranslateAnimation anim = new TranslateAnimation(Animation.ABSOLUTE,pozice_motyl.leftMargin, Animation.ABSOLUTE, next1, Animation.ABSOLUTE, pozice_motyl.topMargin, Animation.ABSOLUTE, next2);
            anim.setDuration(1000);
            anim.setFillAfter(true);
            anim.setFillEnabled(true);

            anim.setAnimationListener(new Animation.AnimationListener() {
                @Override
                public void onAnimationStart(Animation animation) {
                }

                @Override
                public void onAnimationEnd(Animation animation) {




                    FrameLayout.LayoutParams layoutParams = new FrameLayout.LayoutParams(100, 100);

                    layoutParams.leftMargin = (int)(next1);
                    layoutParams.topMargin = (int)(next2);
                    pozadi_motyl.setLayoutParams(layoutParams);

                }

                @Override
                public void onAnimationRepeat(Animation animation) {

                }
            });

            pozadi_motyl.startAnimation(anim);

XMLレイアウトは次のとおりです。

<FrameLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
    xmlns:tools="http://schemas.Android.com/tools"
    xmlns:ads="http://schemas.Android.com/apk/lib/com.google.ads"
    Android:layout_width="fill_parent"
    Android:layout_height="fill_parent" 
    Android:id="@+id/pozadi0"
    Android:gravity="center_vertical"
    Android:layout_gravity="center_vertical"          
    Android:background="@drawable/pozadi2"
    >



<LinearLayout
Android:id="@+id/pozadi_motyl"
        Android:layout_width="wrap_content"
        Android:layout_height="wrap_content"
        >

  <ImageView Android:id="@+id/obrazek_motyl"
             Android:src="@drawable/motyl"
             Android:layout_width="100dip"
             Android:layout_height="100dip"
                         />

   </LinearLayout>


<LinearLayout 
Android:orientation="vertical"
Android:layout_width="fill_parent"
Android:layout_height="fill_parent"
>

<RelativeLayout
Android:id="@+id/obrazek_pozadi0"
Android:layout_width="fill_parent"
Android:layout_height="fill_parent"
>



 <ImageView Android:id="@+id/zaba_obrazek0"
Android:src="@drawable/zaba_obrazek"
Android:layout_width="wrap_content"
Android:layout_height="wrap_content"
Android:layout_alignParentBottom="true"
Android:layout_centerInParent="true"
/>

</RelativeLayout>   
</LinearLayout> 

<LinearLayout
Android:layout_width="fill_parent"
Android:layout_height="fill_parent" 
>

<cz.zaba.Spojnice  
Android:layout_width="fill_parent"          
Android:layout_height="fill_parent" 
/>

</LinearLayout>
</FrameLayout>
32
mira

多くの混乱を避けるため、私は通常、アニメーションの変換でデルタを使用することを好みます。

これを試して、それがあなたのために働くかどうか見てください:

TranslateAnimation anim = new TranslateAnimation(0, amountToMoveRight, 0, amountToMoveDown);
anim.setDuration(1000);

anim.setAnimationListener(new TranslateAnimation.AnimationListener() {

    @Override
    public void onAnimationStart(Animation animation) { }

    @Override
    public void onAnimationRepeat(Animation animation) { }

    @Override
    public void onAnimationEnd(Animation animation) 
    {
        FrameLayout.LayoutParams params = (FrameLayout.LayoutParams)view.getLayoutParams();
        params.topMargin += amountToMoveDown;
        params.leftMargin += amountToMoveRight;
        view.setLayoutParams(params);
    }
});

view.startAnimation(anim);

必ずamountToMoveRight/amountToMoveDownfinalを作成してください

お役に立てれば :)

50
Gil Moshayof

むしろ ViewPropertyAnimator を使用する必要があります。これにより、ビューがその将来の位置にアニメーション化され、アニメーションの終了後にビューにレイアウトパラメーターを強制する必要はありません。そして、それはかなり簡単です。

myView.animate().x(50f).y(100f);

myView.animate().translateX(pixelInScreen) 

注:このピクセルは、ビューに対して相対的ではありません。このピクセルは、画面内のピクセル位置です。

34
bpr10

あなたは好きなことができます

myView.animate().y(0f);//to move to the top of the screen.
9
Rushi Ayyappa

これは私にとって完璧に働いたものです:-

// slide the view from its current position to below itself
public void slideUp(final View view, final View llDomestic){

    ObjectAnimator animation = ObjectAnimator.ofFloat(view, "translationY",0f);
    animation.setDuration(100);
    llDomestic.setVisibility(View.GONE);
    animation.start();

}

// slide the view from below itself to the current position
public void slideDown(View view,View llDomestic){
    llDomestic.setVisibility(View.VISIBLE);
    ObjectAnimator animation = ObjectAnimator.ofFloat(view, "translationY",   0f);
    animation.setDuration(100);
    animation.start();
}

llDomestic:非表示にするビュー。 view:下または上に移動するビュー。

2
Debasish Ghosh

この方法で試すことができます-

ObjectAnimator.ofFloat(view, "translationX", 100f).apply {
    duration = 2000
    start()
}

-ビューは、アニメーションが必要なビューです。

0
Bajrang Hudda