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 ??

|
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 ??
|
|||||||||||||
|
|
- In your 1st Activity create - On the - Use Activity 1:
Activity 2:
|
|||||||||||
|
|
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. |
|||
|
|
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;
and you might fetch the attached data with;
Be sure to check put and get methods variations as they support most generic types. Cheers! |
|||
|
|