this is android application.
i have several pictures and when user touch the image (image1), it will change to other image (image2).
next, this new image (image2), can be noticed and sent to the server.
what i did was im setting a new image ID. then suppose it will pass the new ID to the server.
but when im setting a new ID it will force to close. beside, i realize that the ID it took was the ID for the old image (image1).
image1 = (ImageView)findViewById(R.id.imageView1);
image1.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
image1.setImageResource(R.drawable.a3_01);
image1.setId(70);
}
});
is there any solution for these?please.