gpt4 book ai didi

android 内容提供者给出未知 URL 内容 ://com

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:40:22 24 4
gpt4 key购买 nike

我正在尝试创建自定义内容提供程序,但收到一条错误消息

未知 URL 内容://com.example.test.samplecontentprovider/yay

我的 list 和内容提供者中有以下信息

  <provider
android:authorities="com.example.test.samplecontentprovider"
android:multiprocess="true"
android:name="com.example.test.SampleContentProvider"></provider>

AUTHORITY = "com.example.test.samplecontentprovider"

我哪里错了,请指教。

我在这里也包括源代码包。 http://www.fileserve.com/file/p4eNVgK

最佳答案

根据提供的来源,您在 AndroidManifest.xml 中定义您的提供者时犯了一个错误:您需要在您的应用程序标签中定义您的提供者,即

<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".test"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<provider
android:authorities="com.example.test.samplecontentprovider"
android:multiprocess="true"
android:name="com.example.test.SampleContentProvider"></provider>
</application>

关于android 内容提供者给出未知 URL 内容 ://com,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6788425/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com