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.

I am working on an app that has some muscle workouts.

I want when each item in activity 1 is clicked to take me to activity 2 with different ImageView and TextView. Is this possible ??

pic

share|improve this question
2  
yes it is, possible – Frank Nov 11 '12 at 14:17
Be more specific, what exactly do you want – jcw Nov 11 '12 at 14:19
Can Somebody show How ?? – Jouni Nov 11 '12 at 14:19
What's "abs workouts"? Is this Action Bar Sherlock, or are you working your abs in the gym? – TanjaV Nov 11 '12 at 14:50
abdominal exercises – Jouni Nov 11 '12 at 14:52
show 1 more comment

3 Answers

up vote 2 down vote accepted

- In your 1st Activity create ListView to show your items.

- On the onItemClickListener() method of ListView, use Intent to go to the 2nd Activity.

- Use putExtra() method of Intent to put values if need to be passed to the 2nd Activity, and get them on the 2nd Activity using getExtras() method.

Activity 1:

lv.setOnItemClickListener(new OnItemClickListener() {

            @Override
            public void onItemClick(AdapterView<?> arg0, View arg1, int arg2,
                    long arg3) {


                i = new Intent(Activity1.this,Activity2.class);

                i.putExtra("value1","hello");
                i.putExtra("value2","hi");

                startActivity(i);



        });

Activity 2:

Intent i = getIntent();
String index = intent.getExtras().getString("value1");
String value = intent.getExtras().getString("value2");
share|improve this answer
Thanks , this is hard ,Do you suggest any easier architecture for this app ?? – Jouni Nov 11 '12 at 15:04
@Jouni this is the most easiest way to do it... we can also do this by using Bundle ...but this way is far easier. – Kumar Vivek Mitra Nov 11 '12 at 15:08
Can value1 be an image ?? – Jouni Nov 11 '12 at 15:24
@Jouni Where is the image coming from..i mean whats the source of it... from ur SDCard , Web..etc ??? – Kumar Vivek Mitra Nov 11 '12 at 15:40
The image is in the app as a drawable – Jouni Nov 11 '12 at 15:41
show 3 more comments

Yes, this is possible. You have to use an Intent (with some data about the exercise) for the other Activity.

On the item onClick you create this intent and launch the Activity via startActivity(intent). In Activity 2 you read out the incoming Intent extra data and adjust the TextView/ImageView accordingly.

share|improve this answer
Ok thanks, but I am a beginner in android I don't know how to read the incoming data :( – Jouni Nov 11 '12 at 15:01

As commentators said "It is possible". It is possible via Intent used to start activity. Use Intent.putExtra(key,value) variations. These extras will be passed down to activity as Bundle object. There you might fetch your extras. For example you might attach with;

Intent intent = new Intent(HostActivity.this, SuccessorClass.class);

intent.putExtra("Extra key", extraData);

startActivity(intent);

and you might fetch the attached data with;

protected void onCreate(Bundle savedInstanceState) {
     super.onCreate(savedInstanceState);

     Object extraData = savedInstanceState.get("Extra key");
 }

Be sure to check put and get methods variations as they support most generic types. Cheers!

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.