Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
Firstly, you need to start accepting answers to the questions you've asked. Second, post the LogCat output after the application crashes so we can get an idea of what is causing the issue. – Eric Jul 23 '12 at 4:31
what do you mean by force close. Post your logcat error details.. – Andro Selva Jul 23 '12 at 4:37

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.