【问题标题】:E/libprocessgroup: failed to make and chown /acct/uid_10061: Read-only file systemE/libprocessgroup: 无法创建和 chown /acct/uid_10061: 只读文件系统
【发布时间】:2018-09-13 15:17:57
【问题描述】:

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

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】:

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

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

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2022-07-02
      • 2019-01-23
      • 2019-01-07
      • 1970-01-01
      • 2021-03-04
      • 2018-09-02
      • 1970-01-01
      • 2016-05-21
      相关资源
      最近更新 更多