English 中文(简体)
内容提要和内容提要之间的差别
原标题:Difference between query() in ContentProvider and ContentResolver classes

I m New to android. 现在是Im 做内容提供者。 I m 遵循“Pro android 3”书。 我从那里执行了<代码>BookProvider。 我已在<条码>中履行以下职能:<条码>、更新日期、delete;>条码,延伸至<条码>。 但是,在行使职能时,我使用了:

ContentResolver cr = context.getContentResolver();
cr.delete(uri,contentValues);

我怀疑,我在<代码>BookProvider类别中书写的方法与ContentResolver类别......

另外,请举例说明以下几类基本定义、区别和关系:>Context ,ContentProvider.ContentResolver

更令人怀疑的是,在某些例子中,它们明确地将环境物体纳入活动目标......。 活动和背景类别如何相关?

问题回答

A Context contains information about the context where an Activity, Service or BroadcastReceiver is running. All those classes inherit directly or indirectly from Context. So it stands that all Activityies are Contexts, but only some Contexts are Activityies

当你界定了<条码>自动提供人时,请具体说明可以处理的内容的一个或多个基端。 <代码>ContentResolver 的工作是,根据你提供的内容,向ContentProvider发出指示。





相关问题
Android - ListView fling gesture triggers context menu

I m relatively new to Android development. I m developing an app with a ListView. I ve followed the info in #1338475 and have my app recognizing the fling gesture, but after the gesture is complete, ...

AsyncTask and error handling on Android

I m converting my code from using Handler to AsyncTask. The latter is great at what it does - asynchronous updates and handling of results in the main UI thread. What s unclear to me is how to handle ...

Android intent filter for a particular file extension?

I want to be able to download a file with a particular extension from the net, and have it passed to my application to deal with it, but I haven t been able to figure out the intent filter. The ...

Android & Web: What is the equivalent style for the web?

I am quite impressed by the workflow I follow when developing Android applications: Define a layout in an xml file and then write all the code in a code-behind style. Is there an equivalent style for ...

TiledLayer equivalent in Android [duplicate]

To draw landscapes, backgrounds with patterns etc, we used TiledLayer in J2ME. Is there an android counterpart for that. Does android provide an option to set such tiled patterns in the layout XML?

Using Repo with Msysgit

When following the Android Open Source Project instructions on installing repo for use with Git, after running the repo init command, I run into this error: /c/Users/Andrew Rabon/bin/repo: line ...

Android "single top" launch mode and onNewIntent method

I read in the Android documentation that by setting my Activity s launchMode property to singleTop OR by adding the FLAG_ACTIVITY_SINGLE_TOP flag to my Intent, that calling startActivity(intent) would ...

From Web Development to Android Development

I have pretty good skills in PHP , Mysql and Javascript for a junior developer. If I wanted to try my hand as Android Development do you think I might find it tough ? Also what new languages would I ...

热门标签