gpt4 book ai didi

java - Android:使 imageView 在动画上可点击

转载 作者:行者123 更新时间:2023-12-02 02:55:09 24 4
gpt4 key购买 nike

我有一个 imageView,目前仅使用 TranslateAnimation 从屏幕的左侧移动到右侧。我希望用户在 imageView 穿过屏幕时单击它,然后这会将 ImageView 设置为不可见。我的问题是因为我使用翻译动画,所以无法完成此操作。我应该用什么方法来做到这一点?并可以提供一个例子。

我的代码:

package com.example.mr_br.ibcc_bomber_command;

import android.content.pm.ActivityInfo;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.view.animation.TranslateAnimation;
import android.widget.ImageView;
import android.widget.RelativeLayout;

public class front_gunner extends AppCompatActivity {



@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_front_gunner);
//sets screen orientation on created
this.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);

//animation
final TranslateAnimation moveLefttoRight = new TranslateAnimation(-400, 2500, 0, 0);
moveLefttoRight.setDuration(10000);
moveLefttoRight.setFillAfter(false);



//enemies
final ImageView enemy1 = (ImageView) findViewById(R.id.enemy1);

enemy1.setAnimation(moveLefttoRight);

enemy1.setOnClickListener (new View.OnClickListener(){
@Override
public void onClick(View v) {
enemy1.setVisibility(View.INVISIBLE);
}
});



}
}

谢谢。

最佳答案

fluent方法更令人愉快:

enemy1.animate()
.translationX(2500.0f)
.setDuration(10000)
.withStartAction(() -> enemy1.setTranslationX(-400.0f));

关于java - Android:使 imageView 在动画上可点击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43214033/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com