aboutsummaryrefslogtreecommitdiffstats
path: root/res/layout
diff options
context:
space:
mode:
authorFelix Palmer <felix.palmer@metaswitch.com>2011-12-02 13:48:18 -0800
committerFelix Palmer <felix.palmer@metaswitch.com>2011-12-02 13:50:17 -0800
commit348bb37f8e8fcb902c9a2f1dd59fd5c8ee3cae4d (patch)
tree129b8cb618731e0887c3da4881ba8bc652a99f91 /res/layout
parenta92a1757e7b882e0dbb00a7c580bfa3e09255083 (diff)
downloadandroid_external_android-visualizer-348bb37f8e8fcb902c9a2f1dd59fd5c8ee3cae4d.tar.gz
android_external_android-visualizer-348bb37f8e8fcb902c9a2f1dd59fd5c8ee3cae4d.tar.bz2
android_external_android-visualizer-348bb37f8e8fcb902c9a2f1dd59fd5c8ee3cae4d.zip
Added (messy) Visualizer code
Diffstat (limited to 'res/layout')
-rw-r--r--res/layout/main.xml11
1 files changed, 10 insertions, 1 deletions
diff --git a/res/layout/main.xml b/res/layout/main.xml
index 83899fc..a225cb7 100644
--- a/res/layout/main.xml
+++ b/res/layout/main.xml
@@ -2,12 +2,21 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
+ android:background="@drawable/bg"
android:orientation="vertical" >
<FrameLayout
android:layout_width="fill_parent"
android:layout_height="0dp"
- android:layout_weight="1" >
+ android:layout_margin="10dp"
+ android:layout_weight="1"
+ android:background="#000" >
+
+ <com.pheelicks.visualizer.VisualizerView
+ android:id="@+id/visualizerView"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent" >
+ </com.pheelicks.visualizer.VisualizerView>
</FrameLayout>
<LinearLayout