* #33708: added fragment and model to display IM
diff --git a/res/layout/item_message.xml b/res/layout/item_message.xml
new file mode 100644
index 0000000..da513cc
--- /dev/null
+++ b/res/layout/item_message.xml
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+    android:layout_width="fill_parent"
+    android:layout_height="wrap_content" >
+
+    <LinearLayout
+        android:id="@+id/wrapper"
+        android:layout_width="fill_parent"
+        android:layout_height="wrap_content" >
+
+        <TextView
+            android:id="@+id/comment"
+            android:layout_width="wrap_content"
+            android:layout_height="wrap_content"
+            android:layout_gravity="center"
+            android:layout_margin="5dip"
+            android:background="@drawable/item_generic_selector"
+            android:paddingLeft="10dip"
+            android:text="Hello bubbles!"
+            android:textColor="@android:color/primary_text_light" />
+    </LinearLayout>
+
+</LinearLayout>
\ No newline at end of file