I am new to android and, of course, I have some problems. Your help will be appreciated.
I am trying to create two activity classes: one of them is ListActivity class.
Normal activity class pass a data(string) to ListActivity class(using bundle) to display in the list.
Once we click on the particular item in the list, I again want to go back to the normal activity class to do some further operation. I don’t know if it is possible or not.
Waiting for your reply, Thanks in advance!!
As you are working with a List in your ListActivity , you need to have a Listener:
The method getOnItemSelectedListener will help you fetch the item you click.
After you get the item, you can use Intent to go back to the Normal Activity
EDIT 1:
Example: