I am writing a custom sync Adapter. After addi开发者_JAVA技巧ng a Account it will show the Databases to be synced, Based on the declaration in the Adapter.xml for ex Sync Contacts , Sync Calender.
Can i Customize these names.
Thanks vikas bisla
You need to set the label tag for your provider in AndroidManifest.xml, for instance:
provider android:name="ItemProvider" android:authorities="com.yourApp.ItemProvider" android:label="All data" android:syncable="true"
Cheers
精彩评论