鍍金池/ 教程/ 嵌入式/ Android 的 SEND、VIEW、CALL(WebIntent)
社交分享 SocialSharing
Android 的 SEND、VIEW、CALL(WebIntent)
Google 地圖 Maps
二維碼 Barcode
通過自定義 URL Scheme 啟動你的 APP
檢查 APP 是否被安裝

Android 的 SEND、VIEW、CALL(WebIntent)

插件地址:https://github.com/Initsogar/cordova-webintent

(1)創(chuàng)建工程

引用

cordova create HelloWebIntent com.rensanning.cordova HelloWebIntent 
cd HelloWebIntent 
cordova platform add android

(2)安裝 plugin

引用

cordova plugin add https://github.com/Initsogar/cordova-webintent.git

(3)修改 index.html 后編譯執(zhí)行

Html 代碼

<a href="#" class="btn" id="send">ACTION_SEND</a>
<a href="#" class="btn" id="view">ACTION_VIEW</a>
<a href="#" class="btn" id="call">ACTION_CALL</a>

<script type="text/javascript" src="cordova.js"></script>
<script type="text/javascript" src="js/jquery-1.11.0.min.js"></script>
<script type="text/javascript">
  $(document).on('deviceready', function() {
      $('#send').on('click', send);
      $('#view').on('click', view);
      $('#call').on('click', call);
  });

  function send() {
    alert("send");
    var extras = {};
    extras[window.plugins.webintent.EXTRA_EMAIL] = "rensanning@gmail.com";
    extras[window.plugins.webintent.EXTRA_SUBJECT] = "Subject";
    extras[window.plugins.webintent.EXTRA_TEXT] = "Text text";
    //extras[WebIntent.EXTRA_STREAM] = "file:///android_asset/www/index.html";
    window.plugins.webintent.startActivity({
      action: window.plugins.webintent.ACTION_SEND,
      type: 'text/plain',
      extras: extras},
      function() {},
      function() {alert('Failed to send email via Android Intent');}
    );
  }

  function view() {
    alert("view");
    window.plugins.webintent.startActivity({
      action: window.plugins.webintent.ACTION_VIEW,
      url: 'http://www.baidu.com'},
      function() {},
      function() {alert('Failed to open URL via Android Intent');}
    );
  }

  function call() {
    alert("call");
    window.plugins.webintent.startActivity({
      action: window.plugins.webintent.ACTION_CALL,
      url: 'tel:10086'},
      function() {},
      function() {alert('Failed to Call TEL via Android Intent');}
    );
  }
</script>

http://wiki.jikexueyuan.com/project/cordova-3.x-Plug-in-article/images/4.1.png" alt="picture4.1" />

http://wiki.jikexueyuan.com/project/cordova-3.x-Plug-in-article/images/4.2.png" alt="picture4.2" /> http://wiki.jikexueyuan.com/project/cordova-3.x-Plug-in-article/images/4.3.png" alt="picture4.3" />

http://wiki.jikexueyuan.com/project/cordova-3.x-Plug-in-article/images/4.4.png" alt="picture4.4" />

http://wiki.jikexueyuan.com/project/cordova-3.x-Plug-in-article/images/4.5.png" alt="picture4.5" />