尊敬的Stackoverflow成员,
我正在使用Camera Intent(默认应用程序)。当我上线时:
#!/bin/sh # \ exec wish "$0" "$@" . configure -width 100 -height 50 pack [button .btn1 -text "-" -command { bell }] -side left -fill none pack [scale .scl0 -showvalue 1 -from 0 -to 10 -resolution 1 -orient horizontal] -side left -fill both pack [button .btn2 -text "+" -command { bell }] -side right -fill none
它抛出异常:
无法找到用户0的提供者;希望为此授权找到有效的ContentProvider
请为我提供帮助。谢谢!
AndroidManifest.xml
getContentResolver().notifyChange(selectedImage, null);
MainActivity.java
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.auditor">
<uses-permission android:name="android.permission.CAMERA"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
答案 0 :(得分:0)
我曾经做过,但是我使用过Android 8 , API Level 26
。
您使用的是哪个版本的应用程序?您可以使用Android Platform 8 (API Level 26)
吗?
我希望它可以帮助您忽略此异常。