Android ACTION_DIAL -


i have line of code inside should overrideurlloading method

   if(url.startswith("tel:")){        intent intent = new intent(intent.action_dial);        intent.setdata(uri.parse(url));        startactivity(intent.createchooser(intent, "call"));        return true;     } 

everything working fine not until user reported when clicked on telephone number opens in phone dialer \\\\ in beginning. user using htc sensation device. want know why there's \\\\.
haven't encountered on samsung desire, samsung s3, , htc one.

maybe have @ content of url? guess not sure.


Comments

Popular posts from this blog

Change php variable from jquery value using ajax (same page) -

Pull out data related to my apps from Android Play Store and iOS App Store -

How can I fetch data from a web server in an android application? -