diff options
Diffstat (limited to 'core/java')
| -rw-r--r-- | core/java/android/provider/Telephony.java | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/core/java/android/provider/Telephony.java b/core/java/android/provider/Telephony.java index 1611d28b1be2..c2b0ace7019a 100644 --- a/core/java/android/provider/Telephony.java +++ b/core/java/android/provider/Telephony.java @@ -4245,6 +4245,15 @@ public final class Telephony { public static final String LANGUAGE_CODE = "language"; /** + * Dats coding scheme of the message. + * <p> + * The data coding scheme (dcs) value defined in 3GPP TS 23.038 section 4 + * </p> + * <P>Type: INTEGER</P> + */ + public static final String DATA_CODING_SCHEME = "dcs"; + + /** * Message body. * <P>Type: TEXT</P> */ @@ -4332,18 +4341,32 @@ public final class Telephony { public static final String DEFAULT_SORT_ORDER = DELIVERY_TIME + " DESC"; /** - * The timestamp in millisecond of when the device received the message. + * The timestamp in millisecond, reported by {@link System#currentTimeMillis()}, when the + * device received the message. * <P>Type: BIGINT</P> */ public static final String RECEIVED_TIME = "received_time"; /** + * The timestamp in millisecond, reported by {@link System#currentTimeMillis()}, when + * location was checked last time. Note this is only applicable to geo-targeting message. + * For non geo-targeting message. the field will be set to -1. + * <P>Type: BIGINT</P> + */ + public static final String LOCATION_CHECK_TIME = "location_check_time"; + /** * Indicates that whether the message has been broadcasted to the application. * <P>Type: BOOLEAN</P> */ public static final String MESSAGE_BROADCASTED = "message_broadcasted"; /** + * Indicates that whether the message has been displayed to the user. + * <P>Type: BOOLEAN</P> + */ + public static final String MESSAGE_DISPLAYED = "message_displayed"; + + /** * The Warning Area Coordinates Elements. This element is used for geo-fencing purpose. * * The geometry and its coordinates are separated vertical bar, the first item is the |
