E / libprocessgroup:无法制作和加/ acct / uid_10061:只读文件系统

时间:2018-09-13 15:17:57

标签: android android-intent view action call

我正在尝试打开电话上的拨号页面,并在此页面中显示带有以下代码的电话号码:

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

请帮助我解决它。

1 个答案:

答案 0 :(得分:0)

我通过在代码中添加tel:解决了我的问题。这是正常工作的代码:

Intent intent_call = new Intent(Intent.ACTION_VIEW,Uri.parse("tel:09128317777"));
          startActivity(intent_call);