is it possible to have method startActivtyForResult within an adapter?Then how to get the response? Where to execute the call back function?
startActivtyForResult
write a functon in activity class like this
public void startCommentActivity(Intent i){ startActivityForResult(i, 100); }
call it in adapter class
mActivity.startCommentActivity(intent);