我正在尝试打开手机上的拨号页面,并在此页面中显示一个电话号码,其中包含以下代码:
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
请帮我解决一下。
我通过将tel:添加到我的代码中解决了我的问题。这是正常工作的代码:
Intent intent_call = new Intent(Intent.ACTION_VIEW,Uri.parse("tel:09128317777"));
startActivity(intent_call);