android-contentprovider
Large memory use using content providers
I have an app which monitors several content providers such as the calendar, contact list, gmail etc The app is working fine, but I\'m finding that it can be using up to about 70mb of memory. When I[详细]
2023-03-04 15:59 分类:问答Can not update contact using ContentProvoider
Uri name=null; String []whereargs={\"Sameer Ahmad\"}; name=Uri.withAppendedPath(People.CONTENT_URI,People.Phones.CONTENT_DIRECTORY);[详细]
2023-03-04 05:22 分类:问答android: content provider : Service crashes on staring - Unable to get provider sensordata.collector.SurveyDbProvider
I have built my own content provider. Many applications have to share this database. But when I start my service it crashes. I didn\'t even get any exceptions in the log.[详细]
2023-03-03 03:13 分类:问答Content Provider for Settings/Call Settings/Internet Call Settings/Accounts
I\'m new to Android development and the last piece of real code I touched was over 10 years ago. I went thru the google documentation on the settings content provider, but it seems only some of the s[详细]
2023-03-02 17:48 分类:问答Get changes in content provider
I\'m 开发者_高级运维developing an application that syncs a remote calendar with an Android device.[详细]
2023-03-02 04:25 分类:问答Testing a custom ContentProvider in Android
I have written my content provider supposed to wrap access to 2 tables in a SqlLite database. Now I\'d like to write some test cases for it but I have never done it. After reading the section on the d[详细]
2023-03-01 11:43 分类:问答Error while reading content provider label
So, I trying to implement synchronization based on SyncAdapter of my content provider and server. Seems everything created and initializated well and I can see my account in Accounts&Sync and also[详细]
2023-02-28 15:27 分类:问答Using ContactsContract.Contacts.Data
From the Android documentation, I gather that开发者_StackOverflow I can append the ContactsContract.Contacts.Data.CONTENT_DIRECTORY string to ContactsContract.Contacts.CONTENT_URI and be able to acces[详细]
2023-02-25 06:31 分类:问答Updating content provider values continuously
How to update a value in content provider continuosl开发者_运维问答y?you can look at the AlarmManager which can create periodic intents. You can listen to these intents using a Service or BroadcastRec[详细]
2023-02-24 09:38 分类:问答SQLiteDatabse and ContentProvider in android
I want to create my application\'s own call logs. How to use SQLiteDatabase or/and ContentProv开发者_StackOverflowider in my application to store and retrieve call log information. I am very confused[详细]
2023-02-23 12:37 分类:问答