summaryrefslogtreecommitdiff
path: root/InCallUI/src
diff options
context:
space:
mode:
authorYorke Lee <yorkelee@google.com>2015-04-20 15:02:38 -0700
committerYorke Lee <yorkelee@google.com>2015-04-20 15:02:38 -0700
commitef17c4458ff5c3f5127a7aed510bb48c750b5a03 (patch)
tree1c2523a599945cba6833a94c437e3d0d75481b69 /InCallUI/src
parent76213a95cb613cfe54cd8410151173d719c31325 (diff)
Temporarily disable code that uses plurals
Using plurals currently causes a ResourceNotFoundException because the translated counterparts for all languages must be submitted first. Temporarily disable this codepath. Bug: 20427882 Change-Id: I3a8c565bc704443fe1766e9311952481a25a2295
Diffstat (limited to 'InCallUI/src')
-rw-r--r--InCallUI/src/com/android/incallui/CallCardFragment.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/InCallUI/src/com/android/incallui/CallCardFragment.java b/InCallUI/src/com/android/incallui/CallCardFragment.java
index e49ff86c5..fee16e366 100644
--- a/InCallUI/src/com/android/incallui/CallCardFragment.java
+++ b/InCallUI/src/com/android/incallui/CallCardFragment.java
@@ -620,9 +620,12 @@ public class CallCardFragment extends BaseFragment<CallCardPresenter, CallCardPr
AnimUtils.fadeIn(mElapsedTime, AnimUtils.DEFAULT_DURATION);
}
String callTimeElapsed = DateUtils.formatElapsedTime(duration / 1000);
- String durationDescription = InCallDateUtils.formatDetailedDuration(duration);
mElapsedTime.setText(callTimeElapsed);
+ /*
+ * TODO: Temporarily disabled (b/20427882)
+ String durationDescription = InCallDateUtils.formatDetailedDuration(duration);
mElapsedTime.setContentDescription(durationDescription);
+ */
} else {
// hide() animation has no effect if it is already hidden.
AnimUtils.fadeOut(mElapsedTime, AnimUtils.DEFAULT_DURATION);