プラグインの関数を呼び出す方法、またはブロードキャスト レシーバーからプラグインを初期化する方法を教えてください。
public void onReceive(Context context, Intent intent) {
try {
int st = intent.getIntExtra("state", -1);
if (intent.getAction().equals(Intent.ACTION_HEADSET_PLUG)) {
if(st==1)
{
//call from here
}
}
} catch (Exception e) {
e.printStackTrace();
}
}