ランダムな画像を使用するAndroid用のゲームを開発しています。私の問題は、その画像ビューに特定の画像があるときはいつでも(たとえば、Image1 idがランダムに生成されます) 、Image1が画像ビューに表示されるようになったことを示すメッセージを表示しImageView
たいことです。TextView
if条件を使用して、と言って実行できることを知っていますif imageview=imageview1, textview1.settext "blah blah blah"
。
どうすればそれができますか。私の質問が明確でない場合は、詳細をお尋ねください、リクエスト!!!
package com.random.image;
import java.util.Random;
import android.app.Activity;
import android.app.AlertDialog;
import android.content.DialogInterface;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.ImageView;
import android.widget.TextView;
public class RandomImageActivity extends Activity {
/** Called when the activity is first created. */
private static final Random rgenerator = new Random();
private ImageView iv;
private static final Integer[] mImageIds =
{ R.drawable.tailss, R.drawable.headss, };
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
final TextView t=(TextView) findViewById(R.id.textView1);
Integer q = mImageIds[rgenerator.nextInt(mImageIds.length)];
iv = (ImageView) findViewById(R.id.imageView1);
changeImageResource();
final Button b=(Button) findViewById(R.id.button1);
b.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
AlertDialog a=new AlertDialog.Builder(RandomImageActivity.this).create();
a.setTitle("Flip the Coin");
a.setMessage("Click the button below to find which side of the coin you got");
a.setButton("Try Your Luck", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
// here you can add functions
changeImageResource();
}
});
a.setIcon(R.drawable.coin);
a.show();
}
});
}
public void changeImageResource()
{
int i = rgenerator.nextInt(2);
iv.setImageResource(mImageIds[i]);
}
}