我有两个应用程序,我希望使用内容提供商在应用程序之间共享数据。我做了什么,我已经在应用 A 中创建了内容提供商。以下是应用 A 的Manifest.xml文件。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.kil.demoexample">
<uses-permission android:name="android.permission.INTERNET"/>
<permission android:name="com.kil.demoexample.ContentProvider.StudentsProvider.READ_DATABASE" android:protectionLevel="normal"/>
<permission android:name="com.kil.demoexample.ContentProvider.StudentsProvider.WRITE_DATABASE" android:protectionLevel="normal"/>
<application
android:debuggable="true"
android:name=".myApplication"
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"
tools:ignore="HardcodedDebugMode">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".Login.LoginActivity"/>
<activity android:name=".Login.ObjectPassActivity"/>
<activity android:name=".Login.SignUpActivity"/>
<provider
android:name="com.kil.demoexample.ContentProvider.StudentsProvider"
android:authorities="com.kil.demoexample.ContentProvider.StudentsProvider"
android:exported="true"
android:readPermission="com.kil.demoexample.ContentProvider.StudentsProvider.READ_DATABASE"
android:writePermission="com.kil.demoexample.ContentProvider.StudentsProvider.WRITE_DATABASE"/>
</application>
</manifest>
现在在应用 B 我正在尝试访问应用 A 上的内容提供商。在app B 的Manifest.xml文件中。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.kil.practicepro">
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="com.kil.demoexample.ContentProvider.StudentsProvider.WRITE_DATABASE"/>
<uses-permission android:name="com.kil.demoexample.ContentProvider.StudentsProvider.READ_DATABASE"/>
<application
android:name=".App"
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=".Activity.LoginActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".MainActivity"/>
</application>
</manifest>
现在从应用 B 我正在尝试使用以下代码从应用 A 内容提供商
获取数据 ContentResolver cr=getContentResolver();
String URL = "content://com.kil.demoexample.ContentProvider.StudentsProvider/students";
Uri uri = Uri.parse(URL);
Cursor c=cr.query(uri,null,null,null,null);
if (c != null) {
if (c.moveToFirst()) {
do {
Log.d("column1",c.getString(0));
} while (c.moveToNext());
c.close();
}
}else{
Toast.makeText(this, "CursorIsNull", Toast.LENGTH_SHORT).show();
}
当iam尝试在应用 A 中获取数据时,它运行正常但当我尝试从应用 B 访问内容提供商时,它通过我发送错误。 我几乎检查了Stackoverflow上的所有帖子。根据所有帖子,我已经在 AndroidManifest.xml 中设置了我的权限,但它仍然给我一个错误** java.lang.SecurityException:权限拒绝:打开提供者**是否有任何错误在我的文件中请帮助我。