我有一个简单的问题,当我使用
var phone_number='12346789';
Titanium.Platform.openURL('tel:'+phone_number);
it goes to dial pad in android i want it to directly dial the call without prompting the user to press the call button.
我将 AndroidManifest.xml 中的权限添加为
<uses-permission android:name="android.permission.CALL_PHONE" />
但它仍然无法正常工作,仍然要求用户按下通话按钮。任何人对此有所了解,请帮助。
阿里。