这是一个创建于 4794 天前的主题,其中的信息可能已经有所发展或是发生改变。
小子是android初学者,在学习用Intent启用常用的服务时遇到这样的问题:
使用Intent调用拨号服务程序运转正常
代码如下
Intent intent = new Intent();
intent.setAction(Intent.ACTION_DIAL);
intent.setData(Uri.parse("tel:96880"));
startActivity(intent);
但是启用呼叫服务时,程序却报错
Intent intent = new Intent();
intent.setAction(Intent.ACTION_CALL);
intent.setData(Uri.parse("tel:96880"));
startActivity(intent);
这样就运行不了了。。。
在Manifest中注册了<uses-permission android:name = "android.permission.CALL_PHINE"/>还是不行。
求大牛们指点,在线等~~
3 条回复 • 1970-01-01 08:00:00 +08:00
|
|
1
damngood 2011-09-24 13:36:04 +08:00
至少还是要贴下logcat里面的错误信息吧。。
|
|
|
2
dw1521 2011-09-24 16:21:27 +08:00
@ damngood 怪就怪在logcat里面没有错误信息。。debug的时候点击按钮整个程序会卡住不动。。。。
|
|
|
3
dw1521 2011-09-24 16:24:07 +08:00
@ damngood 对了,debug的时候会弹出一个Parcel.class的界面,显示source not found
|