I have 2 activities on android, in one activity I have 3 RadioButtons and a button called send, and when I select the first radiobutton and press the button send I want to send that radio button and his functionality to the second activity, and the radio button should be visible in the second activity until I decide to delete it from the second activity.
like:
Activity A: -radioButton1 onclick(send)
activity B: Received a reference of radioButton1 and his functionality.
is important to know that I don't want to start the second activity I just want to send a reference from the radiobutton from ActivityA to activityB.