从广播接收器phonegap android调用插件函数

时间:2012-05-15 08:46:57

标签: android broadcastreceiver phonegap-plugins

如何调用插件中的函数或从广播接收器初始化插件?

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();
   }
}

0 个答案:

没有答案