public PluginResult execute(String action, JSONArray args, String callbackId) {
try {
Intent intent = new Intent(Intent.ACTION_HEADSET_PLUG);
String nm = intent.getStringExtra("name");
String st1 = intent.getStringExtra("state");
Log.v("nikhil","i="+intent+" name="+nm+" 2="+st1);
return new PluginResult(PluginResult.Status.OK);
} catch(Exception e) {
Log.e("MailApp", "Could not send email", e);
}
return null;
}
nm と st1 は常に null になります。ヘッドセットが差し込まれていても!!!