0

私のコード:

        moveBottomtoTop = new TranslateAnimation(0, 0, 320, -320);
        moveBottomtoTop.setDuration(1000);
        moveBottomtoTop.setRepeatCount(-1);
        moveBottomtoTop.setFillAfter(false);

        imageView01.startAnimation(moveBottomtoTop);

        imageView01.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {
                // TODO Auto-generated method stub
                imageView01.setVisibility(View.INVISIBLE);
            }
        });

私のxml:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" >

    <LinearLayout android:id="@+id/video_layout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@null">

    <VideoView
        android:id="@+id/surface_view"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"/>

    </LinearLayout>

    <LinearLayout 
        android:id="@+id/bubbles_layout"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@null"
        android:layout_gravity="bottom">

    <ImageButton
        android:id="@+id/l01"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@drawable/pressed01"
        android:padding="1dp"
        android:contentDescription="@string/cont_desc"/>

    </LinearLayout>

</FrameLayout>

ここに画像の説明を入力 ここに画像の説明を入力

しかし、onclick イベントは機能しません。また、アニメーションは軌跡を残します。私はそれをグーグルで検索し、 padding="1dp" を適用すると解決することがわかりましたが、うまくいきません。そして、私のアニメーションビューは、ビデオビューの半分後ろに、ビデオビューの上半分になります。この3つの問題を教えてください。このアプリの機能の一部を実行したいだけです。バブル、つまり、バブルを下から上に移動し、触れると押しつぶします。前もって感謝します。

4

1 に答える 1

0

onClick 内で次のコードを使用して、アニメーションを再度開始できます。

moveLefttoRight.setRepeatCount(Animation.INFINITE);
于 2012-11-16T06:05:06.307 に答える