首页 > 解决方案 > E/libprocessgroup: 无法创建和 chown /acct/uid_10061: 只读文件系统

问题描述

我正在尝试打开电话上的拨号页面并在此页面中显示一个电话号码,其中包含以下代码:

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

请帮我解决它。

标签: androidandroid-intentviewactioncall

解决方案


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

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

推荐阅读