2つの画像が重なり合っています。上の画像を画面の右側にアニメーション化(スライド)して、画面に残っている部分までアニメーション化して、元の位置にアニメーション化できるようにします。下の画像をクリックして新しいアクティビティを開始しますが、上の画像をクリックするだけで、上の画像をアニメーション化してもレイアウトが移動しないことがわかっています。しかし、上の画像のレイアウトを移動しようとしましたが、レイアウトを移動すると上の画像が消えます。
何か助けはありますか?
2つの画像が重なり合っています。上の画像を画面の右側にアニメーション化(スライド)して、画面に残っている部分までアニメーション化して、元の位置にアニメーション化できるようにします。下の画像をクリックして新しいアクティビティを開始しますが、上の画像をクリックするだけで、上の画像をアニメーション化してもレイアウトが移動しないことがわかっています。しかし、上の画像のレイアウトを移動しようとしましたが、レイアウトを移動すると上の画像が消えます。
何か助けはありますか?
上記の画像を翻訳した後、aboveImage.setClickable(false);のように、クリック可能性をfalseに設定します。以下のコードを試してください、それは動作します
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.animation.Animation;
import android.view.animation.TranslateAnimation;
import android.widget.ImageView;
public class AnimationActivity extends Activity {
ImageView aboveImage;
ImageView belowImage;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
aboveImage=(ImageView) findViewById(R.id.image_above);
belowImage=(ImageView) findViewById(R.id.image_below);
aboveImage.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
/*belowImage.setVisibility(View.VISIBLE);
overridePendingTransition(R.anim.move_to_right,R.anim.move_to_left);*/
Animation animation = new TranslateAnimation(0, 100,0, 0);
animation.setDuration(1000);
animation.setFillAfter(true);
aboveImage.startAnimation(animation);
aboveImage.setVisibility(0);
aboveImage.setClickable(false);
}
});
belowImage.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
startActivity(new Intent(getApplicationContext(),Activity2.class));
}
});
}
}
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<ImageView
android:id="@+id/image_below"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/cherry" />
<ImageView
android:id="@+id/image_above"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/amalapaul" />
</RelativeLayout>