Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

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:

enter image description here

share|improve this question

1 Answer

Create a new Image View for the bubble in chatting.xml. set it's focus to false, android:focusable="false" You'll only want the bubble shown when text is received. As for the listview, yes you'll need one as you want to be able to format the conversation, say a new row for every message. Create a listview in chatting.xml. The list view should automatically scroll so you don't need the scroll view.

share|improve this answer
thanks for answering me, but I tried to drag and drop the listView Wedjet but I couldn't !!! can you explain more thanks alot :" – Samiah Apr 9 '12 at 18:36
and can you tell me please where should I put the bubbles??? – Samiah Apr 9 '12 at 18:36
1  
replace your scrollview with '<ListView android:id="@id/android:list" android:layout_width="fill_parent" android:layout_height="421dp" android:drawSelectorOnTop="false" > </ListView>' You might have to hard code the bubble image rather than using the xml widget. Do this with a custom adapter, google custom listview adapter – Pete Apr 9 '12 at 18:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.