0

スナップショット

上のスクリーンショットに示されているように、EditText はその親を超えています。これを防ぐにはどうすればよいですか?

私のチャット アクティビティでは、ListView を使用してメッセージを表示します。各メッセージはリスト アイテムです。

これはxmlファイルです:

<ListView
    android:id="@+id/listView1"
    android:layout_width="match_parent"
    android:layout_height="fill_parent"
    android:layout_above="@+id/form"
    android:layout_below="@+id/header"
    android:divider="@null"
    android:dividerHeight="0dp"
    android:padding="5dp" >
</ListView>

そしてリスト項目:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/wrapper"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal" >

    <ImageView
        android:id="@+id/avatarLeft"
        android:layout_width="48dp"
        android:layout_height="48dp"
        android:background="@drawable/border"
        android:contentDescription="@string/empty_string"
        android:src="@drawable/icon_default_avatar"
        android:visibility="gone" />           this will be adjusted programmatically

    <TextView
        android:id="@+id/comment"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"        this will be adjusted programmatically
        android:layout_margin="5dp"
        android:background="@drawable/none"    this will be adjusted programmatically
        android:ellipsize="none"
        android:paddingLeft="10dp"
        android:singleLine="false"
        android:text=""
        android:textColor="@android:color/primary_text_light" />

    <ImageView
        android:id="@+id/avatarRight"
        android:layout_width="48dp"
        android:layout_height="48dp"
        android:background="@drawable/border"
        android:contentDescription="@string/empty_string"
        android:src="@drawable/icon_default_avatar"
        android:visibility="gone" />           this will be adjusted programmatically

</LinearLayout>
4

1 に答える 1