Summary
Protected Methods |
int
|
bulkInsert(Uri uri, ContentValues[] values)
|
int
|
delete(Uri uri, String whereClause, String[] whereArgs)
|
Uri
|
insert(Uri uri, ContentValues values)
|
Cursor
|
query(Uri uri, String[] projection, String whereClause, String[] whereArgs, String sortOrder)
|
int
|
update(Uri uri, ContentValues values, String whereClause, String[] whereArgs)
|
[Expand]
Inherited Methods |
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
|
Public Constructors
public
UrbanAirshipResolver
(Context context)
Public Methods
public
void
registerContentObserver
(Uri uri, boolean notifyForDescendents, ContentObserver observer)
Register a ContentObserver to listen for updates to the supplied URI.
Parameters
uri |
The URI you want to listen to updates for. |
notifyForDescendents |
If true changes to URIs beginning with uri
will also cause notifications to be sent. If false only changes to the exact URI
specified by uri will cause notifications to be sent. If true, than any URI values
at or below the specified URI will also trigger a match. |
observer |
The ContentObserver you want to alert when the supplied URI is updated.
|
public
void
unregisterContentObserver
(ContentObserver observer)
Unregister the supplied ContentObserver.
Parameters
observer |
The ContentObserver you wish to unregister
|
Protected Methods