From 7ad072cb5e19d4f62b44c2910b193c90b1d1fb23 Mon Sep 17 00:00:00 2001 From: Felix Palmer Date: Thu, 8 Dec 2011 22:05:17 -0800 Subject: Changed colours for bar renderer --- src/com/pheelicks/app/MainActivity.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') 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); } -- cgit v1.2.3