summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/phonenumbercache/CallLogQuery.java
diff options
context:
space:
mode:
authormdooley <mdooley@google.com>2017-06-23 14:20:46 -0700
committerEric Erfanian <erfanian@google.com>2017-06-26 09:03:49 -0700
commit287a1838e00dd0a1d0df9f8e799bacb9b57e6c7e (patch)
tree2f98dc062610022990192a286c1974fbcd7688f8 /java/com/android/dialer/phonenumbercache/CallLogQuery.java
parent268a1958d493a9c0110e2524848cd27c1929bf89 (diff)
Adding voicemail transcription branding and progress UI
screen shot showing branding (its harder to capture the progress UI): https://drive.google.com/open?id=0B9o_KvtLkcuIdkkycVo1RFhsaENYV3J2Yi1LWnJzR0FfSHJR Bug: 62376944,62424455 Test: device testing PiperOrigin-RevId: 159993127 Change-Id: I8355164b5831e85de13915e221f6e0f0163e8c81
Diffstat (limited to 'java/com/android/dialer/phonenumbercache/CallLogQuery.java')
-rw-r--r--java/com/android/dialer/phonenumbercache/CallLogQuery.java18
1 files changed, 18 insertions, 0 deletions
diff --git a/java/com/android/dialer/phonenumbercache/CallLogQuery.java b/java/com/android/dialer/phonenumbercache/CallLogQuery.java
index 6d4756927..2ebc302cf 100644
--- a/java/com/android/dialer/phonenumbercache/CallLogQuery.java
+++ b/java/com/android/dialer/phonenumbercache/CallLogQuery.java
@@ -60,6 +60,9 @@ public final class CallLogQuery {
@RequiresApi(VERSION_CODES.N)
public static final int VIA_NUMBER = 25;
+ @RequiresApi(VERSION_CODES.O)
+ public static final int TRANSCRIPTION_STATE = 26;
+
private static final String[] PROJECTION_M =
new String[] {
Calls._ID, // 0
@@ -97,8 +100,23 @@ public final class CallLogQuery {
PROJECTION_N = projectionList.toArray(new String[projectionList.size()]);
}
+ private static final String[] PROJECTION_O;
+
+ // TODO(mdooley): remove when this becomes a public api
+ // Copied from android.provider.CallLog.Calls
+ private static final String TRANSCRIPTION_STATE_COLUMN = "transcription_state";
+
+ static {
+ List<String> projectionList = new ArrayList<>(Arrays.asList(PROJECTION_N));
+ projectionList.add(TRANSCRIPTION_STATE_COLUMN);
+ PROJECTION_O = projectionList.toArray(new String[projectionList.size()]);
+ }
+
@NonNull
public static String[] getProjection() {
+ if (VERSION.SDK_INT >= VERSION_CODES.O) {
+ return PROJECTION_O;
+ }
if (VERSION.SDK_INT >= VERSION_CODES.N) {
return PROJECTION_N;
}