我正在尝试打开电话上的拨号页面,并在此页面中显示带有以下代码的电话号码:
Intent intent_call = new Intent(Intent.ACTION_VIEW,Uri.parse("09128317777"));
startActivity(intent_call);enter code here
但出现以下错误:
E/libprocessgroup: failed to make and chown /acct/uid_10061: Read-only file system
请帮助我解决它。
答案 0 :(得分:0)
我通过在代码中添加tel:解决了我的问题。这是正常工作的代码:
Intent intent_call = new Intent(Intent.ACTION_VIEW,Uri.parse("tel:09128317777"));
startActivity(intent_call);