* #23663 Integrated new drawing in App (check action bar icon)
diff --git a/res/layout/bubbleview_layout.xml b/res/layout/bubbleview_layout.xml
new file mode 100644
index 0000000..ceeafa3
--- /dev/null
+++ b/res/layout/bubbleview_layout.xml
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+    android:layout_width="fill_parent"
+    android:layout_height="fill_parent" >
+
+    <com.savoirfairelinux.sflphone.model.BubblesView
+        android:id="@+id/main_view"
+        android:layout_width="match_parent"
+        android:layout_height="match_parent"
+        android:layout_alignParentBottom="true"
+        android:layout_alignParentTop="true"
+        android:focusable="true" />
+
+    <Button
+        android:id="@+id/add_bubble"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:layout_alignParentBottom="true"
+        android:text="Add Bubble" />
+
+</RelativeLayout>
\ No newline at end of file