diff options
| author | 2019-08-19 08:26:30 -0700 | |
|---|---|---|
| committer | 2019-08-19 08:26:30 -0700 | |
| commit | ecd1d67584b6519157085c9a6bf79032fea275c3 (patch) | |
| tree | 87b0b3a7cb7130921233e0e5b7e7e7895c899c78 | |
| parent | 67044c622fa21636bb536f0e3896938e5b1c8aac (diff) | |
| parent | 4e16f07ddf7abf041befc61d33d9be3d9e547814 (diff) | |
Merge "Fix incorrect descriptions under SMS contract" am: 8f48cb7e7e am: 6ef5b6c183
am: 4e16f07ddf
Change-Id: I0e8a4e7cbe1bfc34f03b57256f6eed48f56ccdcc
| -rw-r--r-- | telephony/java/android/provider/Telephony.java | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/telephony/java/android/provider/Telephony.java b/telephony/java/android/provider/Telephony.java index eacf1d149e61..2814c4bbddeb 100644 --- a/telephony/java/android/provider/Telephony.java +++ b/telephony/java/android/provider/Telephony.java @@ -693,7 +693,7 @@ public final class Telephony { } /** - * Contains all sent text-based SMS messages in the SMS app. + * Contains all draft text-based SMS messages in the SMS app. */ public static final class Draft implements BaseColumns, TextBasedSmsColumns { @@ -809,7 +809,15 @@ public final class Telephony { } /** - * Contains all sent text-based SMS messages in the SMS app. + * Contains a view of SMS conversations (also referred to as threads). This is similar to + * {@link Threads}, but only includes SMS messages and columns relevant to SMS + * conversations. + * <p> + * Note that this view ignores any information about MMS messages, it is a + * view of conversations as if MMS messages did not exist at all. This means that all + * relevant information, such as snippets and message count, will ignore any MMS messages + * that might be in the same thread through other views and present only data based on the + * SMS messages in that thread. */ public static final class Conversations implements BaseColumns, TextBasedSmsColumns { |