android:如何通过android应用程序调用数字
可能重复:
如何打电话使用意图在Android?
请给我通过android应用程序调用号码的代码。
非常感谢
Intent callIntent = new Intent(Intent.ACTION_CALL); callIntent.setData(Uri.parse("tel:123456789")); startActivity(callIntent);
编辑 :必须在Manifest中添加<uses-permission android:name="android.permission.CALL_PHONE" />
。
尝试这个,
Intent callIntent = new Intent(Intent.ACTION_CALL); callIntent.setData(Uri.parse("tel:123456789")); startActivity(callIntent);
请记住,将这个CALL_PHONE
权限添加到您的manifest.xml
:
<uses-permission android:name="android.permission.CALL_PHONE" />
这可能会帮助你。
- intelliJ IDEA 13错误:请selectAndroid SDK
- 如何在android中以编程方式添加快捷方式到主屏幕
- 如何截取当前活动的截图然后分享?
- 为什么BitmapFactory.decodeByteArray返回null?
- 具有自定义标记的android Maps API v2
- android.view.InflateException:二进制XML文件:错误膨胀类的片段
- 渲染问题在渲染过程中引发exception:com.android.ide.common.rendering.api.LayoutlibCallback
- Android Market / Play商店中的促销和特色图表是什么?
- 如何在Android Studio中使用adb通过WiFi进行debugging