2

下の写真+ xmlコードに示すように、chatting.xmlでこのデザインを作成し、9-Patchで2つのバブル画像を作成しましたが、私の問題は:

これらのバブル画像をこのchatting.xmlのチャットテキストの背景にするにはどうすればよいですか?ListViewを追加するにはどうすればよいですか?

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>

バブル画像:

ここに画像の説明を入力

4

1 に答える 1

1

chatting.xml でバブルの新しい画像ビューを作成します。フォーカスを false に設定し android:focusable="false"ます。テキストを受信したときにのみバブルを表示する必要があります。リストビューに関しては、はい、会話をフォーマットできるようにする必要があるため、メッセージごとに新しい行を言う必要があります。chatting.xml でリストビューを作成します。リスト ビューは自動的にスクロールする必要があるため、スクロール ビューは必要ありません。

于 2012-04-09T18:16:26.537 に答える