在我们的网站上,您可以通过拨打某个电话号码并输入 6 位数代码进行小额支付。是否可以自动拨打此号码,或将其附加在电话号码后面,以便自动输入此 6 位数代码?
如果它适用于 android 或 iPhone,它已经有很大帮助,尽管交叉解决方案显然是更可取的。
干得好
在清单中添加以下权限。
<uses-permission android:name="android.permission.CALL_PHONE">
然后调用这个方法
private void call() {
try {
Intent callIntent = new Intent(Intent.ACTION_CALL);
callIntent.setData(Uri.parse("tel:1234")); //you put desired phone number
startActivity(callIntent);
} catch (ActivityNotFoundException e) {
Log.e("helloandroid dialing example", "Call failed", e);
}
}