<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Paul, in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/How-to-dial-call-from-apk/m-p/1083655#M62582</link>
    <description>&lt;P&gt;Paul,&lt;/P&gt;

&lt;P&gt;I know this is a year late, but I was trying to solve the same problem today and your your google advice sent me in just the right direction.&lt;/P&gt;

&lt;P&gt;This thread in StackOverflow in particular is a great solution using inappbrowser.&lt;/P&gt;

&lt;P&gt;&lt;A href="http://stackoverflow.com/questions/19639663/cordova-trying-to-dial-telephone-number" target="_blank"&gt;http://stackoverflow.com/questions/19639663/cordova-trying-to-dial-telephone-number&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Leads to:&lt;/P&gt;

&lt;P&gt;obj.public_phone is a value in a JSON object and the js is creating a string (out for output) that is passed to a &amp;lt;div&amp;gt; in html for display:&lt;/P&gt;

&lt;PRE class="brush:jscript;"&gt; if (obj.public_phone.length &amp;gt; 0){out += 'Call: &amp;lt;br&amp;gt;&amp;lt;button class="btn widget uib_w_22 d-margins btn-xs btn-primary" ';
 out += 'data-uib="twitter%20bootstrap/button" data-ver="1" ';
 out += 'onclick= "placeCall(\'' + obj.public_phone + '\')"&amp;gt;' + obj.public_phone + '&amp;lt;/button&amp;gt;&amp;lt;br&amp;gt;';}
&lt;/PRE&gt;

&lt;P&gt;later in app.js:&lt;/P&gt;

&lt;PRE class="brush:jscript;"&gt;function placeCall(num) {
        cordova.InAppBrowser.open('tel:' + num.replace(/\(|\)|\ |\-/g,''), '_system');
};

&lt;/PRE&gt;

&lt;P&gt;Simple, elegant, and uses inappbrowser in a way I would never have thought of. &lt;STRONG&gt;&lt;EM&gt;BEAUTIFUL!&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;Ed&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 08 Jan 2017 03:49:15 GMT</pubDate>
    <dc:creator>Ed_T_</dc:creator>
    <dc:date>2017-01-08T03:49:15Z</dc:date>
    <item>
      <title>How to dial/call from apk</title>
      <link>https://community.intel.com/t5/Software-Archive/How-to-dial-call-from-apk/m-p/1083653#M62580</link>
      <description>&lt;P&gt;How to dial/call from apk i want from a button get into the dial of the phone whit a number ready to call.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Nov 2015 15:38:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/How-to-dial-call-from-apk/m-p/1083653#M62580</guid>
      <dc:creator>nicolas_r_</dc:creator>
      <dc:date>2015-11-25T15:38:14Z</dc:date>
    </item>
    <item>
      <title>There are a variety of</title>
      <link>https://community.intel.com/t5/Software-Archive/How-to-dial-call-from-apk/m-p/1083654#M62581</link>
      <description>&lt;P&gt;There are a variety of solutions, please "google" for "plugin to dial telephone cordova"&lt;/P&gt;</description>
      <pubDate>Thu, 26 Nov 2015 00:25:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/How-to-dial-call-from-apk/m-p/1083654#M62581</guid>
      <dc:creator>PaulF_IntelCorp</dc:creator>
      <dc:date>2015-11-26T00:25:02Z</dc:date>
    </item>
    <item>
      <title>Paul,</title>
      <link>https://community.intel.com/t5/Software-Archive/How-to-dial-call-from-apk/m-p/1083655#M62582</link>
      <description>&lt;P&gt;Paul,&lt;/P&gt;

&lt;P&gt;I know this is a year late, but I was trying to solve the same problem today and your your google advice sent me in just the right direction.&lt;/P&gt;

&lt;P&gt;This thread in StackOverflow in particular is a great solution using inappbrowser.&lt;/P&gt;

&lt;P&gt;&lt;A href="http://stackoverflow.com/questions/19639663/cordova-trying-to-dial-telephone-number" target="_blank"&gt;http://stackoverflow.com/questions/19639663/cordova-trying-to-dial-telephone-number&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Leads to:&lt;/P&gt;

&lt;P&gt;obj.public_phone is a value in a JSON object and the js is creating a string (out for output) that is passed to a &amp;lt;div&amp;gt; in html for display:&lt;/P&gt;

&lt;PRE class="brush:jscript;"&gt; if (obj.public_phone.length &amp;gt; 0){out += 'Call: &amp;lt;br&amp;gt;&amp;lt;button class="btn widget uib_w_22 d-margins btn-xs btn-primary" ';
 out += 'data-uib="twitter%20bootstrap/button" data-ver="1" ';
 out += 'onclick= "placeCall(\'' + obj.public_phone + '\')"&amp;gt;' + obj.public_phone + '&amp;lt;/button&amp;gt;&amp;lt;br&amp;gt;';}
&lt;/PRE&gt;

&lt;P&gt;later in app.js:&lt;/P&gt;

&lt;PRE class="brush:jscript;"&gt;function placeCall(num) {
        cordova.InAppBrowser.open('tel:' + num.replace(/\(|\)|\ |\-/g,''), '_system');
};

&lt;/PRE&gt;

&lt;P&gt;Simple, elegant, and uses inappbrowser in a way I would never have thought of. &lt;STRONG&gt;&lt;EM&gt;BEAUTIFUL!&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;Ed&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 08 Jan 2017 03:49:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/How-to-dial-call-from-apk/m-p/1083655#M62582</guid>
      <dc:creator>Ed_T_</dc:creator>
      <dc:date>2017-01-08T03:49:15Z</dc:date>
    </item>
  </channel>
</rss>

