获取 Android 运行时:致命异常
Posted
技术标签:
【中文标题】获取 Android 运行时:致命异常【英文标题】:Getting Android runtime : Fatal Exception 【发布时间】:2017-07-01 11:23:55 【问题描述】:我正在使用以下联系人获取应用程序的代码,我得到 Android 运行时:致命异常:第 17 行的主要错误。
package com.example.alpesh_pc.contactlist;
import android.app.Activity;
import android.database.Cursor;
import android.os.Bundle;
import android.provider.ContactsContract;
import android.widget.Toast;
public class MainActivity extends Activity
public Cursor cursor;
@Override
protected void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
cursor=this.getContentResolver().query(ContactsContract.Contacts.CONTENT_URI, null, null, null, null);
if(cursor.getCount()>0)
Toast.makeText(this, "Seccess", Toast.LENGTH_LONG).show();
下面是我的日志
E/AndroidRuntime: 致命异常: main 进程:com.example.alpesh_pc.contactlist,PID:3833 java.lang.RuntimeException:无法启动活动 ComponentInfocom.example.alpesh_pc.contactlist/com.example.alpesh_pc.contactlist.MainActivity:java.lang.SecurityException:权限被拒绝:打开提供程序 com.android.providers.contacts。 ProcessRecord6970ad0 3833:com.example.alpesh_pc.contactlist/u0a67 (pid=3833, uid=10067) 中的 ContactsProvider2 需要 android.permission.READ_CONTACTS 或 android.permission.WRITE_CONTACTS 在 android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2646) 在 android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2707) 在 android.app.ActivityThread.-wrap12(ActivityThread.java) 在 android.app.ActivityThread$H.handleMessage(ActivityThread.java:1460) 在 android.os.Handler.dispatchMessage(Handler.java:102) 在 android.os.Looper.loop(Looper.java:154) 在 android.app.ActivityThread.main(ActivityThread.java:6077) 在 java.lang.reflect.Method.invoke(本机方法) 在 com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:865) 在 com.android.internal.os.ZygoteInit.main(ZygoteInit.java:755) 原因:java.lang.SecurityException: Permission Denial: 从 ProcessRecord6970ad0 3833:com.example.alpesh_pc.contactlist/u0a67 (pid=3833, uid=10067) 打开提供程序 com.android.providers.contacts.ContactsProvider2 需要 android .permission.READ_CONTACTS 或 android.permission.WRITE_CONTACTS 在 android.os.Parcel.readException(Parcel.java:1683) 在 android.os.Parcel.readException(Parcel.java:1636) 在 android.app.ActivityManagerProxy.getContentProvider(ActivityManagerNative.java:4169) 在 android.app.ActivityThread.acquireProvider(ActivityThread.java:5434) 在 android.app.ContextImpl$ApplicationContentResolver.acquireUnstableProvider(ContextImpl.java:2267) 在 android.content.ContentResolver.acquireUnstableProvider(ContentResolver.java:1515) 在 android.content.ContentResolver.query(ContentResolver.java:514) 在 android.content.ContentResolver.query(ContentResolver.java:472) 在 com.example.alpesh_pc.contactlist.MainActivity.onCreate(MainActivity.java:17) 在 android.app.Activity.performCreate(Activity.java:6662) 在 android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1118) 在 android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2599) 在 android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2707) 在 android.app.ActivityThread.-wrap12(ActivityThread.java) 在 android.app.ActivityThread$H.handleMessage(ActivityThread.java:1460) 在 android.os.Handler.dispatchMessage(Handler.java:102) 在 android.os.Looper.loop(Looper.java:154) 在 android.app.ActivityThread.main(ActivityThread.java:6077) 在 java.lang.reflect.Method.invoke(本机方法) 在 com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:865) 在 com.android.internal.os.ZygoteInit.main(ZygoteInit.java:755) 应用程序终止。
【问题讨论】:
请分享你的logcat 请再次检查问题,我已使用 logcat 对其进行了修改。谢谢。 @TahmidRahman 请检查我的回答 【参考方案1】:添加权限
<uses-permission android:name="android.permission.READ_CONTACTS" />
在 Android 清单 xml 中
【讨论】:
【参考方案2】:检查 Manifest.xml 中的权限,并为 api 级别 23 或更高级别设置运行时权限,例如:
对于清单文件:
<uses-permission android:name="android.permission.READ_CONTACTS" />
对于运行时权限检查:
permission_tutorial
【讨论】:
检查 permission_tutorial 链接并将其放入您的代码中【参考方案3】:我认为您正在使用 Marshmallow OS(Android 版本 6)或任何需要运行时权限检查的设备。
你试过了吗?
// Here, thisActivity is the current activity
if (ContextCompat.checkSelfPermission(thisActivity,
Manifest.permission.READ_CONTACTS)
!= PackageManager.PERMISSION_GRANTED)
// Should we show an explanation?
if (ActivityCompat.shouldShowRequestPermissionRationale(thisActivity,
Manifest.permission.READ_CONTACTS))
// Show an explanation to the user *asynchronously* -- don't block
// this thread waiting for the user's response! After the user
// sees the explanation, try again to request the permission.
else
// No explanation needed, we can request the permission.
ActivityCompat.requestPermissions(thisActivity,
new String[]Manifest.permission.READ_CONTACTS,
MY_PERMISSIONS_REQUEST_READ_CONTACTS);
// MY_PERMISSIONS_REQUEST_READ_CONTACTS is an
// app-defined int constant. The callback method gets the
// result of the request.
并处理权限请求响应
@Override
public void onRequestPermissionsResult(int requestCode,
String permissions[], int[] grantResults)
switch (requestCode)
case MY_PERMISSIONS_REQUEST_READ_CONTACTS:
// If request is cancelled, the result arrays are empty.
if (grantResults.length > 0
&& grantResults[0] == PackageManager.PERMISSION_GRANTED)
// permission was granted, yay! Do the
// contacts-related task you need to do.
else
// permission denied, boo! Disable the
// functionality that depends on this permission.
return;
// other 'case' lines to check for other
// permissions this app might request
如果仍有任何困惑,您可以查看here。
【讨论】:
MY_PERMISSIONS_REQUEST_READ_CONTACTS 无法解析符号 这是一个'requestCode',你可以在你的活动中初始化'public static final int MY_PERMISSIONS_REQUEST_READ_CONTACTS = 0;'这里0不是必须的,你可以设置任何'int'以上是关于获取 Android 运行时:致命异常的主要内容,如果未能解决你的问题,请参考以下文章
致命异常:主要 java.lang.NoClassDefFoundError:android.support.v7.internal.widget.TintManager