एक स्टब कॉन्टेंट प्रोवाइडर बनाएं
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
सिंक अडैप्टर फ़्रेमवर्क को इस तरह से डिज़ाइन किया गया है कि वह डिवाइस के डेटा के साथ काम करता है. इस डेटा को सुविधाजनक और
बहुत ही सुरक्षित कॉन्टेंट देने वाला फ़्रेमवर्क. इस वजह से, सिंक अडैप्टर फ़्रेमवर्क को
कि फ़्रेमवर्क का इस्तेमाल करने वाले ऐप्लिकेशन ने अपने स्थानीय डेटा के लिए पहले ही कॉन्टेंट देने वाले की जानकारी दे दी है.
अगर सिंक अडैप्टर फ़्रेमवर्क आपके सिंक अडैप्टर को चलाने की कोशिश करता है और आपके ऐप्लिकेशन के पास
कॉन्टेंट देने वाला है, तो आपका सिंक अडैप्टर क्रैश हो जाता है.
अगर कोई ऐसा नया ऐप्लिकेशन डेवलप किया जा रहा है जो डेटा को सर्वर से डिवाइस में ट्रांसफ़र करता है, तो आपको
स्थानीय डेटा को कॉन्टेंट उपलब्ध कराने वाली कंपनी में सेव करें. इसके लिए उनकी अहमियत के अलावा
सिंक अडैप्टर, कॉन्टेंट देने वाले अलग-अलग तरह के सुरक्षा से जुड़े फ़ायदे देते हैं. साथ ही, खास तौर पर
जिन्हें Android सिस्टम पर डेटा स्टोरेज हैंडल करने के लिए डिज़ाइन किया गया है. कॉन्टेंट बनाने के बारे में ज़्यादा जानने के लिए
कॉन्टेंट प्रोवाइडर बनाना पर जाएं.
हालांकि, अगर आपने पहले से ही स्थानीय डेटा को किसी अन्य फ़ॉर्म में सेव किया है, तो अब भी सिंक करने की सुविधा का इस्तेमाल किया जा सकता है
अडैप्टर की मदद से डेटा ट्रांसफ़र किया जाता है. इसके लिए, सिंक अडैप्टर फ़्रेमवर्क की ज़रूरी शर्तों को पूरा करने के लिए
तो अपने ऐप्लिकेशन में कोई स्टब कॉन्टेंट प्रोवाइडर जोड़ें. एक स्टब प्रोवाइडर
कॉन्टेंट प्रोवाइडर क्लास है, लेकिन इसके सभी ज़रूरी तरीकों में null
या 0
दिखता है. अगर आपको
कोई स्टब प्रोवाइडर जोड़ें, फिर किसी भी स्टोरेज से डेटा ट्रांसफ़र करने के लिए सिंक अडैप्टर का इस्तेमाल करें
किस तरह काम करते हैं.
अगर आपके ऐप्लिकेशन में पहले से ही कॉन्टेंट प्रोवाइडर मौजूद है, तो आपको स्टब कॉन्टेंट प्रोवाइडर की ज़रूरत नहीं है.
ऐसी स्थिति में, आप इस लेसन को छोड़कर लेसन पर आगे बढ़ सकते हैं
सिंक अडैप्टर बनाना. अगर आपके पास
इस लेसन में बताया गया है कि एक स्टब कॉन्टेंट प्रोवाइडर को कैसे जोड़ें, जिससे
अपने सिंक अडैप्टर को फ़्रेमवर्क में प्लग करें.
कोई स्टब कॉन्टेंट प्रोवाइडर जोड़ें
अपने ऐप्लिकेशन के लिए स्टब कॉन्टेंट प्रोवाइडर बनाने के लिए, क्लास की अवधि बढ़ाएं
ContentProvider
और इसके ज़रूरी तरीकों को स्टब करें. नीचे दिए गए
स्निपेट में आपको स्टब प्रोवाइडर बनाने का तरीका बताया गया है:
Kotlin
/*
* Define an implementation of ContentProvider that stubs out
* all methods
*/
class StubProvider : ContentProvider() {
/*
* Always return true, indicating that the
* provider loaded correctly.
*/
override fun onCreate(): Boolean = true
/*
* Return no type for MIME type
*/
override fun getType(uri: Uri): String? = null
/*
* query() always returns no results
*
*/
override fun query(
uri: Uri,
projection: Array<String>,
selection: String,
selectionArgs: Array<String>,
sortOrder: String
): Cursor? = null
/*
* insert() always returns null (no URI)
*/
override fun insert(uri: Uri, values: ContentValues): Uri? = null
/*
* delete() always returns "no rows affected" (0)
*/
override fun delete(uri: Uri, selection: String, selectionArgs: Array<String>): Int = 0
/*
* update() always returns "no rows affected" (0)
*/
override fun update(
uri: Uri,
values: ContentValues,
selection: String,
selectionArgs: Array<String>
): Int = 0
}
Java
/*
* Define an implementation of ContentProvider that stubs out
* all methods
*/
public class StubProvider extends ContentProvider {
/*
* Always return true, indicating that the
* provider loaded correctly.
*/
@Override
public boolean onCreate() {
return true;
}
/*
* Return no type for MIME type
*/
@Override
public String getType(Uri uri) {
return null;
}
/*
* query() always returns no results
*
*/
@Override
public Cursor query(
Uri uri,
String[] projection,
String selection,
String[] selectionArgs,
String sortOrder) {
return null;
}
/*
* insert() always returns null (no URI)
*/
@Override
public Uri insert(Uri uri, ContentValues values) {
return null;
}
/*
* delete() always returns "no rows affected" (0)
*/
@Override
public int delete(Uri uri, String selection, String[] selectionArgs) {
return 0;
}
/*
* update() always returns "no rows affected" (0)
*/
public int update(
Uri uri,
ContentValues values,
String selection,
String[] selectionArgs) {
return 0;
}
}
मेनिफ़ेस्ट में, सेवा देने वाली कंपनी के बारे में बताएं
सिंक अडैप्टर फ़्रेमवर्क इस बात की जांच करके पुष्टि करता है कि आपके ऐप्लिकेशन में कॉन्टेंट देने वाला कोई व्यक्ति है या नहीं
ऐप्लिकेशन ने अपने ऐप्लिकेशन मेनिफ़ेस्ट में प्रोवाइडर का एलान किया है. स्टब प्रोवाइडर के बारे में जानकारी देने के लिए
मेनिफ़ेस्ट फ़ाइल में, इन एट्रिब्यूट के साथ <provider>
एलिमेंट जोड़ें:
-
android:name="com.example.android.datasync.provider.StubProvider"
- अभी तक किसी भी व्यक्ति ने चेक इन नहीं किया है
उस क्लास का पूरी तरह क्वालिफ़ाइड नाम बताता है जो स्टब कॉन्टेंट प्रोवाइडर को लागू करता है.
-
android:authorities="com.example.android.datasync.provider"
- अभी तक किसी भी व्यक्ति ने चेक इन नहीं किया है
यूआरआई अथॉरिटी, जो स्टब कॉन्टेंट देने वाले की पहचान करती है. अपने ऐप्लिकेशन के लिए इस वैल्यू को सेट करें
".provider" स्ट्रिंग के साथ पैकेज का नाम में जोड़ा गया था. भले ही आप अपने
स्टब प्रोवाइडर को सिस्टम से कनेक्ट नहीं किया जाता, तो कोई भी कंपनी खुद को ऐक्सेस करने की कोशिश नहीं करती.
-
android:exported="false"
- अभी तक किसी भी व्यक्ति ने चेक इन नहीं किया है
इससे यह तय होता है कि दूसरे ऐप्लिकेशन, कॉन्टेंट देने वाले को ऐक्सेस कर सकते हैं या नहीं. आपके स्टब कॉन्टेंट के लिए
प्रोवाइडर का इस्तेमाल करते हुए, वैल्यू को
false
पर सेट करें, क्योंकि दूसरे ऐप्लिकेशन को देखने की अनुमति देना ज़रूरी नहीं है
. इस वैल्यू का असर, सिंक अडैप्टर फ़्रेमवर्क के बीच होने वाले इंटरैक्शन पर नहीं पड़ता
और कॉन्टेंट देने वाले के बारे में बात करते हैं.
-
android:syncable="true"
- अभी तक किसी भी व्यक्ति ने चेक इन नहीं किया है
यह फ़्लैग सेट करता है कि प्रोवाइडर को सिंक किया जा सकता है. अगर आपने इस फ़्लैग को
true
, आपको अपने कोड में setIsSyncable()
को कॉल करने की ज़रूरत नहीं है. फ़्लैग की मदद से, सिंक अडैप्टर फ़्रेमवर्क को डेटा
ट्रांसफ़र करता है, लेकिन ट्रांसफ़र सिर्फ़ तब होता है, जब आप उन्हें साफ़ तौर पर करते हैं.
नीचे दिया गया स्निपेट आपको
ऐप्लिकेशन मेनिफ़ेस्ट के लिए <provider>
एलिमेंट:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.android.network.sync.BasicSyncAdapter"
android:versionCode="1"
android:versionName="1.0" >
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
...
<provider
android:name="com.example.android.datasync.provider.StubProvider"
android:authorities="com.example.android.datasync.provider"
android:exported="false"
android:syncable="true"/>
...
</application>
</manifest>
अब जब आपने सिंक अडैप्टर फ़्रेमवर्क के लिए ज़रूरी डिपेंडेंसी बना ली है, तो
आपके डेटा ट्रांसफ़र कोड को इनकैप्सुलेट करने वाला कॉम्पोनेंट बनाने के लिए. इस कॉम्पोनेंट को
सिंक अडैप्टर. अगले लेसन में, आपको अपने ऐप्लिकेशन में इस कॉम्पोनेंट को जोड़ने का तरीका बताया गया है.
इस पेज पर मौजूद कॉन्टेंट और कोड सैंपल कॉन्टेंट के लाइसेंस में बताए गए लाइसेंस के हिसाब से हैं. Java और OpenJDK, Oracle और/या इससे जुड़ी हुई कंपनियों के ट्रेडमार्क या रजिस्टर किए हुए ट्रेडमार्क हैं.
आखिरी बार 2025-07-27 (UTC) को अपडेट किया गया.
[[["समझने में आसान है","easyToUnderstand","thumb-up"],["मेरी समस्या हल हो गई","solvedMyProblem","thumb-up"],["अन्य","otherUp","thumb-up"]],[["वह जानकारी मौजूद नहीं है जो मुझे चाहिए","missingTheInformationINeed","thumb-down"],["बहुत मुश्किल है / बहुत सारे चरण हैं","tooComplicatedTooManySteps","thumb-down"],["पुराना","outOfDate","thumb-down"],["अनुवाद से जुड़ी समस्या","translationIssue","thumb-down"],["सैंपल / कोड से जुड़ी समस्या","samplesCodeIssue","thumb-down"],["अन्य","otherDown","thumb-down"]],["आखिरी बार 2025-07-27 (UTC) को अपडेट किया गया."],[],[],null,["# Create a stub content provider\n\nThe sync adapter framework is designed to work with device data managed by the flexible and\nhighly secure content provider framework. For this reason, the sync adapter framework expects\nthat an app that uses the framework has already defined a content provider for its local data.\nIf the sync adapter framework tries to run your sync adapter, and your app doesn't have a\ncontent provider, your sync adapter crashes.\n\n\nIf you're developing a new app that transfers data from a server to the device, you should\nstrongly consider storing the local data in a content provider. Besides their importance for\nsync adapters, content providers offer a variety of security benefits and are specifically\ndesigned to handle data storage on Android systems. To learn more about creating a content\nprovider, see [Creating a Content Provider](/guide/topics/providers/content-provider-creating).\n\n\nHowever, if you're already storing local data in another form, you can still use a sync\nadapter to handle data transfer. To satisfy the sync adapter framework requirement for a\ncontent provider, add a stub content provider to your app. A stub provider implements the\ncontent provider class, but all of its required methods return `null` or `0`. If you\nadd a stub provider, you can then use a sync adapter to transfer data from any storage\nmechanism you choose.\n\n\nIf you already have a content provider in your app, you don't need a stub content provider.\nIn that case, you can skip this lesson and proceed to the lesson\n[Creating a Sync Adapter](/training/sync-adapters/creating-sync-adapter). If you don't yet have a\ncontent provider, this lesson shows you how to add a stub content provider that allows you to\nplug your sync adapter into the framework.\n\nAdd a stub content provider\n---------------------------\n\n\nTo create a stub content provider for your app, extend the class\n[ContentProvider](/reference/android/content/ContentProvider) and stub out its required methods. The following\nsnippet shows you how to create the stub provider: \n\n### Kotlin\n\n```kotlin\n/*\n * Define an implementation of ContentProvider that stubs out\n * all methods\n */\nclass StubProvider : ContentProvider() {\n /*\n * Always return true, indicating that the\n * provider loaded correctly.\n */\n override fun onCreate(): Boolean = true\n\n /*\n * Return no type for MIME type\n */\n override fun getType(uri: Uri): String? = null\n\n /*\n * query() always returns no results\n *\n */\n override fun query(\n uri: Uri,\n projection: Array\u003cString\u003e,\n selection: String,\n selectionArgs: Array\u003cString\u003e,\n sortOrder: String\n ): Cursor? = null\n\n /*\n * insert() always returns null (no URI)\n */\n override fun insert(uri: Uri, values: ContentValues): Uri? = null\n\n /*\n * delete() always returns \"no rows affected\" (0)\n */\n override fun delete(uri: Uri, selection: String, selectionArgs: Array\u003cString\u003e): Int = 0\n\n /*\n * update() always returns \"no rows affected\" (0)\n */\n override fun update(\n uri: Uri,\n values: ContentValues,\n selection: String,\n selectionArgs: Array\u003cString\u003e\n ): Int = 0\n}\n```\n\n### Java\n\n```java\n/*\n * Define an implementation of ContentProvider that stubs out\n * all methods\n */\npublic class StubProvider extends ContentProvider {\n /*\n * Always return true, indicating that the\n * provider loaded correctly.\n */\n @Override\n public boolean onCreate() {\n return true;\n }\n /*\n * Return no type for MIME type\n */\n @Override\n public String getType(Uri uri) {\n return null;\n }\n /*\n * query() always returns no results\n *\n */\n @Override\n public Cursor query(\n Uri uri,\n String[] projection,\n String selection,\n String[] selectionArgs,\n String sortOrder) {\n return null;\n }\n /*\n * insert() always returns null (no URI)\n */\n @Override\n public Uri insert(Uri uri, ContentValues values) {\n return null;\n }\n /*\n * delete() always returns \"no rows affected\" (0)\n */\n @Override\n public int delete(Uri uri, String selection, String[] selectionArgs) {\n return 0;\n }\n /*\n * update() always returns \"no rows affected\" (0)\n */\n public int update(\n Uri uri,\n ContentValues values,\n String selection,\n String[] selectionArgs) {\n return 0;\n }\n}\n```\n\nDeclare the provider in the manifest\n------------------------------------\n\n\nThe sync adapter framework verifies that your app has a content provider by checking that your\napp has declared a provider in its app manifest. To declare the stub provider in the\nmanifest, add a [\u003cprovider\u003e](/guide/topics/manifest/provider-element) element with the following attributes:\n\n\n`android:name=\"com.example.android.datasync.provider.StubProvider\"`\n:\n Specifies the fully-qualified name of the class that implements the stub content provider.\n\n\n`android:authorities=\"com.example.android.datasync.provider\"`\n:\n A URI authority that identifies the stub content provider. Make this value your app's\n package name with the string \".provider\" appended to it. Even though you're declaring your\n stub provider to the system, nothing tries to access the provider itself.\n\n\n`android:exported=\"false\"`\n:\n Determines whether other apps can access the content provider. For your stub content\n provider, set the value to `false`, since there's no need to allow other apps to see\n the provider. This value doesn't affect the interaction between the sync adapter framework\n and the content provider.\n\n\n`android:syncable=\"true\"`\n:\n Sets a flag that indicates that the provider is syncable. If you set this flag to\n `true`, you don't have to call [setIsSyncable()](/reference/android/content/ContentResolver#setIsSyncable(android.accounts.Account, java.lang.String, int)) in your code. The flag allows the sync adapter framework to make data\n transfers with the content provider, but transfers only occur if you do them explicitly.\n\n\nThe following snippet shows you how to add the\n[\u003cprovider\u003e](/guide/topics/manifest/provider-element) element to the app manifest: \n\n```xml\n\u003cmanifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n package=\"com.example.android.network.sync.BasicSyncAdapter\"\n android:versionCode=\"1\"\n android:versionName=\"1.0\" \u003e\n \u003capplication\n android:allowBackup=\"true\"\n android:icon=\"@drawable/ic_launcher\"\n android:label=\"@string/app_name\"\n android:theme=\"@style/AppTheme\" \u003e\n ...\n \u003cprovider\n android:name=\"com.example.android.datasync.provider.StubProvider\"\n android:authorities=\"com.example.android.datasync.provider\"\n android:exported=\"false\"\n android:syncable=\"true\"/\u003e\n ...\n \u003c/application\u003e\n\u003c/manifest\u003e\n```\n\n\nNow that you have created the dependencies required by the sync adapter framework, you can\ncreate the component that encapsulates your data transfer code. This component is called a\nsync adapter. The next lesson shows you how to add this component to your app."]]