summaryrefslogtreecommitdiff
path: root/InCallUI
diff options
context:
space:
mode:
authorYorke Lee <yorkelee@google.com>2015-07-09 19:06:02 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2015-07-09 19:06:03 +0000
commitd0e728d93273181d8dba32ecacdee88d7c86e8c7 (patch)
tree7e06c94407c7672db916e4d5ca6c3df9aa1f31ff /InCallUI
parent709a0f5931e08994099a0df9643d08b1479d192e (diff)
parentd5388a70f8271bdfadef6b01f9820767e880be67 (diff)
Merge "Set task description for InCallActivity" into mnc-dev
Diffstat (limited to 'InCallUI')
-rw-r--r--InCallUI/src/com/android/incallui/InCallPresenter.java12
1 files changed, 9 insertions, 3 deletions
diff --git a/InCallUI/src/com/android/incallui/InCallPresenter.java b/InCallUI/src/com/android/incallui/InCallPresenter.java
index 84ccc7c55..236129637 100644
--- a/InCallUI/src/com/android/incallui/InCallPresenter.java
+++ b/InCallUI/src/com/android/incallui/InCallPresenter.java
@@ -16,6 +16,7 @@
package com.android.incallui;
+import android.app.ActivityManager.TaskDescription;
import android.app.FragmentManager;
import android.content.Context;
import android.content.Intent;
@@ -1486,12 +1487,17 @@ public class InCallPresenter implements CallList.Listener,
}
final Resources resources = mInCallActivity.getResources();
+ final int color;
if (resources.getBoolean(R.bool.is_layout_landscape)) {
- mInCallActivity.getWindow().setStatusBarColor(
- resources.getColor(R.color.statusbar_background_color));
+ color = resources.getColor(R.color.statusbar_background_color, null);
} else {
- mInCallActivity.getWindow().setStatusBarColor(mThemeColors.mSecondaryColor);
+ color = mThemeColors.mSecondaryColor;
}
+
+ mInCallActivity.getWindow().setStatusBarColor(color);
+ final TaskDescription td = new TaskDescription(
+ resources.getString(R.string.notification_ongoing_call), null, color);
+ mInCallActivity.setTaskDescription(td);
}
/**