I have the following code
public class DevClick implements OnItemClickListener {
@Override
public void onItemClick(AdapterView<?> arg0, View arg1, int arg2,
long arg3) { ... }
This is called from ListView from the activity.
I want in that event that the caller activity will close. how can I get the activity from this event??
Thanks
just only call finish function for closing activity.