E / libprocessgroup:无法生成和chown / acct / uid_10061:只读文件系统

问题描述 投票:0回答:1

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

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

请帮我解决一下。

android android-intent view action call
1个回答
0
投票

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

Intent intent_call = new Intent(Intent.ACTION_VIEW,Uri.parse("tel:09128317777"));
          startActivity(intent_call);
© www.soinside.com 2019 - 2024. All rights reserved.