アプリのバックグラウンドでストロボ効果を作ろうとしています。ハンドラーが最適に機能することを読みましたが、それらを適用する方法がわかりません。この投稿を見ました
public boolean onTouch(View v, MotionEvent event) {
final int DELAY = 100;
if(event.getAction() == MotionEvent.ACTION_UP) {
RelativeLayout fondo = (RelativeLayout) findViewById(R.id.fondo);
ColorDrawable f = new ColorDrawable(0xff00ff00);
ColorDrawable f2 = new ColorDrawable(0xffff0000);
ColorDrawable f3 = new ColorDrawable(0xff0000ff);
ColorDrawable f4 = new ColorDrawable(0xff0000ff);
AnimationDrawable a = new AnimationDrawable();
a.addFrame(f, DELAY);
a.addFrame(f2, DELAY);
a.addFrame(f3, DELAY);
a.addFrame(f4, DELAY);
a.setOneShot(false);
fondo.setBackgroundDrawable(a); // This method is deprecated in API 16
// fondo.setBackground(a); // Use this method if you're using API 16
a.start();
}
return true;
}
これを修正するにはどうすればよいですか? ハンドラなしでこれを行う方法はありますか?
package com.example.converter;
import android.app.Activity;
import android.graphics.drawable.AnimationDrawable;
import android.graphics.drawable.ColorDrawable;
import android.view.MotionEvent;
import android.view.View;
import android.widget.RelativeLayout;
public class Savannah extends Activity {
RelativeLayout r = (RelativeLayout) findViewById(R.layout.activity_savannah);
r.setOnTouchListener=(new OnTouchListener() {
@Override
public boolean onTouch(View view, MotionEvent event) {
final int DELAY = 100;
if (event.getAction() == MotionEvent.ACTION_UP) {
RelativeLayout fondo = (RelativeLayout) findViewById(R.layout.activity_savannah);
ColorDrawable f = new ColorDrawable(0xff00ff00);
ColorDrawable f2 = new ColorDrawable(0xffff0000);
ColorDrawable f3 = new ColorDrawable(0xff0000ff);
ColorDrawable f4 = new ColorDrawable(0xff0000ff);
AnimationDrawable a = new AnimationDrawable();
a.addFrame(f, DELAY);
a.addFrame(f2, DELAY);
a.addFrame(f3, DELAY);
a.addFrame(f4, DELAY);
a.setOneShot(false);
fondo.setBackgroundDrawable(a); // This method is deprecated
// in API
// 16
// fondo.setBackground(a); // Use this method if you're
// using API 16
a.start();
}
return true;
}
});
}
これは私が持っているものですが、オンタッチ ビュー ビュー モーション イベントと同様に、seontouch リスナーがエラーにフラグを立てています。