summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMohamad Ayyash <mkayyash@google.com>2014-08-26 16:44:27 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-08-26 16:44:28 +0000
commit412e4e203f9675300c1fc8aa444a49360a5423c0 (patch)
treea2783607e24ecec909679f20d4faf134f1096431 /tests
parent51f6f52d9de011553bed9f624002b071f2b6c2f3 (diff)
parentc508d03a943cf933fb853bc2e37cccf45d9dec23 (diff)
downloadframeworks_base-412e4e203f9675300c1fc8aa444a49360a5423c0.zip
frameworks_base-412e4e203f9675300c1fc8aa444a49360a5423c0.tar.gz
frameworks_base-412e4e203f9675300c1fc8aa444a49360a5423c0.tar.bz2
Merge "Set text color for the output log." into lmp-dev
Diffstat (limited to 'tests')
-rw-r--r--tests/FrameworkPerf/src/com/android/frameworkperf/FrameworkPerfActivity.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/FrameworkPerf/src/com/android/frameworkperf/FrameworkPerfActivity.java b/tests/FrameworkPerf/src/com/android/frameworkperf/FrameworkPerfActivity.java
index 6633787..78e360b 100644
--- a/tests/FrameworkPerf/src/com/android/frameworkperf/FrameworkPerfActivity.java
+++ b/tests/FrameworkPerf/src/com/android/frameworkperf/FrameworkPerfActivity.java
@@ -20,6 +20,7 @@ import android.app.Activity;
import android.content.ComponentName;
import android.content.Intent;
import android.content.ServiceConnection;
+import android.graphics.Color;
import android.os.Binder;
import android.os.Bundle;
import android.os.Handler;
@@ -199,6 +200,7 @@ public class FrameworkPerfActivity extends Activity
mLocalCheckBox = (CheckBox)findViewById(R.id.local);
mLog = (TextView)findViewById(R.id.log);
+ mLog.setTextColor(Color.RED);
PowerManager pm = (PowerManager)getSystemService(POWER_SERVICE);
mPartialWakeLock = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "Scheduler");