diff options
| author | Android (Google) Code Review <android-gerrit@google.com> | 2009-10-29 11:07:15 -0400 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2009-10-29 11:07:15 -0400 |
| commit | 3fc145aafd4e04875ab3b67fed3429db30e15e48 (patch) | |
| tree | 24f4d3f03e7d453d6b2f46836aa69fa6b7d97620 /core/java | |
| parent | 8071b14680f8081019ac1b995d7c7f09a8aeeba7 (diff) | |
| parent | e86721843333a00a9ff279af988d702e2da6bf2c (diff) | |
| download | frameworks_base-3fc145aafd4e04875ab3b67fed3429db30e15e48.zip frameworks_base-3fc145aafd4e04875ab3b67fed3429db30e15e48.tar.gz frameworks_base-3fc145aafd4e04875ab3b67fed3429db30e15e48.tar.bz2 | |
Merge change Ie8672184 into eclair-mr2
* changes:
Add error code column to SMS
Diffstat (limited to 'core/java')
| -rw-r--r-- | core/java/android/provider/Telephony.java | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/core/java/android/provider/Telephony.java b/core/java/android/provider/Telephony.java index d8c5a53..9a72d93 100644 --- a/core/java/android/provider/Telephony.java +++ b/core/java/android/provider/Telephony.java @@ -152,6 +152,12 @@ public final class Telephony { * <P>Type: INTEGER (boolean)</P> */ public static final String LOCKED = "locked"; + + /** + * Error code associated with sending or receiving this message + * <P>Type: INTEGER</P> + */ + public static final String ERROR_CODE = "error_code"; } /** @@ -243,7 +249,7 @@ public final class Telephony { * @return true if the operation succeeded */ public static boolean moveMessageToFolder(Context context, - Uri uri, int folder) { + Uri uri, int folder, int error) { if (uri == null) { return false; } @@ -266,7 +272,7 @@ public final class Telephony { return false; } - ContentValues values = new ContentValues(2); + ContentValues values = new ContentValues(3); values.put(TYPE, folder); if (markAsUnread) { @@ -274,6 +280,7 @@ public final class Telephony { } else if (markAsRead) { values.put(READ, Integer.valueOf(1)); } + values.put(ERROR_CODE, error); return 1 == SqliteWrapper.update(context, context.getContentResolver(), uri, values, null, null); |
