mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-15 14:05:05 -05:00
12d1097a24
approximating AOSP coding standards.
29 lines
904 B
Java
29 lines
904 B
Java
package com.fsck.k9.remotecontrol;
|
|
|
|
import android.content.BroadcastReceiver;
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.os.Bundle;
|
|
import android.util.Log;
|
|
|
|
class AccountReceiver extends BroadcastReceiver {
|
|
K9AccountReceptor receptor = null;
|
|
|
|
protected AccountReceiver(K9AccountReceptor nReceptor) {
|
|
receptor = nReceptor;
|
|
}
|
|
|
|
@Override
|
|
public void onReceive(Context context, Intent intent) {
|
|
if (K9RemoteControl.K9_REQUEST_ACCOUNTS.equals(intent.getAction())) {
|
|
Bundle bundle = getResultExtras(false);
|
|
if (bundle == null) {
|
|
Log.w(K9RemoteControl.LOG_TAG, "Response bundle is empty");
|
|
return;
|
|
}
|
|
receptor.accounts(bundle.getStringArray(K9RemoteControl.K9_ACCOUNT_UUIDS), bundle.getStringArray(K9RemoteControl.K9_ACCOUNT_DESCRIPTIONS));
|
|
}
|
|
}
|
|
|
|
}
|