aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelix Palmer <felix.palmer@metaswitch.com>2011-12-08 22:05:17 -0800
committerFelix Palmer <felix.palmer@metaswitch.com>2011-12-08 22:05:17 -0800
commit7ad072cb5e19d4f62b44c2910b193c90b1d1fb23 (patch)
tree695ca79c255fdab997c07969fa73507e2cc1638b
parentd6e0e8fd21056fabb7a68e79337a9b919d9ccb1f (diff)
downloadandroid_external_android-visualizer-7ad072cb5e19d4f62b44c2910b193c90b1d1fb23.tar.gz
android_external_android-visualizer-7ad072cb5e19d4f62b44c2910b193c90b1d1fb23.tar.bz2
android_external_android-visualizer-7ad072cb5e19d4f62b44c2910b193c90b1d1fb23.zip
Changed colours for bar renderer
-rw-r--r--src/com/pheelicks/app/MainActivity.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/pheelicks/app/MainActivity.java b/src/com/pheelicks/app/MainActivity.java
index 8ace206..7d0f755 100644
--- a/src/com/pheelicks/app/MainActivity.java
+++ b/src/com/pheelicks/app/MainActivity.java
@@ -87,14 +87,14 @@ public class MainActivity extends Activity {
Paint paint = new Paint();
paint.setStrokeWidth(50f);
paint.setAntiAlias(true);
- paint.setColor(Color.argb(200, 233, 0, 44));
+ paint.setColor(Color.argb(200, 56, 138, 252));
BarGraphRenderer barGraphRendererBottom = new BarGraphRenderer(16, paint, false);
mVisualizerView.addRenderer(barGraphRendererBottom);
Paint paint2 = new Paint();
paint2.setStrokeWidth(12f);
paint2.setAntiAlias(true);
- paint2.setColor(Color.argb(200, 11, 111, 233));
+ paint2.setColor(Color.argb(200, 181, 111, 233));
BarGraphRenderer barGraphRendererTop = new BarGraphRenderer(4, paint2, true);
mVisualizerView.addRenderer(barGraphRendererTop);
}