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:
parent
b63b270bd7
commit
de35171843
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user