From 03b13198537df025febb842db7f95794a1faad8f Mon Sep 17 00:00:00 2001 From: zachh Date: Fri, 26 Jan 2018 10:56:46 -0800 Subject: Added number presentation to AnnotatedCallLog. Updated the new call log UI to properly show text based on the presentation. Bug: 70989592 Test: unit PiperOrigin-RevId: 183414195 Change-Id: I2123f37cd3c733060125b6e894c1a80be4193ad6 --- .../android/dialer/calllog/datasources/util/RowCombiner.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'java/com/android/dialer/calllog/datasources/util') diff --git a/java/com/android/dialer/calllog/datasources/util/RowCombiner.java b/java/com/android/dialer/calllog/datasources/util/RowCombiner.java index 6e33db51e..2bb65cc3e 100644 --- a/java/com/android/dialer/calllog/datasources/util/RowCombiner.java +++ b/java/com/android/dialer/calllog/datasources/util/RowCombiner.java @@ -80,6 +80,18 @@ public class RowCombiner { return this; } + /** Asserts that all column values for the given column name are the same, and uses it. */ + public RowCombiner useSingleValueInt(String columnName) { + Iterator iterator = individualRowsSortedByTimestampDesc.iterator(); + Integer singleValue = iterator.next().getAsInteger(columnName); + while (iterator.hasNext()) { + Integer current = iterator.next().getAsInteger(columnName); + Assert.checkState(Objects.equals(singleValue, current), "Values different for " + columnName); + } + combinedRow.put(columnName, singleValue); + return this; + } + /** Performs a bitwise OR on the specified column and yields the result. */ public RowCombiner bitwiseOr(String columnName) { int combinedValue = 0; -- cgit v1.2.3