as shown in the picture below + xml code, I created this design in chatting.xml, then I created 2 bubbles images by 9-Patch,but my problem is:
How can I put these bubbles images to be the background of the chatting text in this chatting.xml and how can I add the ListView is it important?
chatting.xml

chatting.xml
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/frameLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/MidnightBlue"
android:padding="5dp" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ScrollView
android:layout_width="fill_parent"
android:layout_height="30dip"
android:layout_weight=".99"
android:background="@color/LightGray" >
<TextView
android:id="@+id/textView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="TextView" />
</ScrollView>
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:baselineAligned="true"
android:orientation="horizontal"
android:paddingBottom="0dp"
android:paddingLeft="4dp"
android:paddingRight="1dp" >
<EditText
android:id="@+id/textInput"
android:layout_width="0dip"
android:layout_height="40dp"
android:layout_weight="1" />
<Button
android:id="@+id/btnSend"
android:layout_width="80dp"
android:layout_height="45dp"
android:textColor="@color/MidnightBlue"
android:text="Send"
/>
</LinearLayout>
</LinearLayout>
</FrameLayout>
Bubble Image:
