1
0
mirror of https://github.com/moparisthebest/Yaaic synced 2025-02-16 15:00:14 -05:00

ConversationActivity: onActivityResult() - Stub for REQUEST_CODE_USER

This commit is contained in:
Sebastian Kaspari 2010-05-03 21:00:18 +02:00
parent b63b270bd7
commit de35171843

View File

@ -549,6 +549,11 @@ public class ConversationActivity extends Activity implements ServiceConnection,
startActivityForResult(intent, REQUEST_CODE_USER);
break;
case REQUEST_CODE_USER:
int actionId = data.getExtras().getInt(Extra.ACTION);
String nickname = data.getExtras().getString(Extra.USER);
// XXX: Implement me - The action should be handled after onResume()
// to catch the broadcasts
break;
}