Listview会自动更改linearlayout中的宽度

时间:2018-04-04 15:22:01

标签: android xml listview android-linearlayout

我试图实现一个显示事物列表的简单UI。它有一个顶部工具栏和一个底部的文本区域。 我将所有内容都放入了LinearLayout中。工具栏具有固定高度,底部文本区域具有可变高度,具体取决于所写的文本。屏幕的其余部分应该被列表占用。 当我尝试在EditText元素中键入内容并且它有多行时,listview开始显示随机行为。 列表中的所有元素最初都位于屏幕的右侧。但他们不知何故来到左侧。

如何防止此行为?

代码如下:

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">
    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="#ff6e00"
        android:elevation="4dp"
        android:theme="@style/ThemeOverlay.AppCompat.ActionBar">
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="horizontal">
            <ImageButton
                android:id="@+id/back_button"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center_vertical"
                android:src="@mipmap/backbutton_transparent"
                android:background="?attr/selectableItemBackground"
                android:clickable="true"/>
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:textColor="#000000"
                android:gravity="center_vertical"
                android:textSize="24dp"
                />
        </LinearLayout>
    </android.support.v7.widget.Toolbar>
    <ListView
        android:id="@+id/conversation_list_view"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:dividerHeight="0dp"
        android:divider="@null"
        android:layout_weight="1"
        android:stackFromBottom="true"
        android:layout_marginBottom="4dp">

    </ListView>
    <View
        android:layout_width="match_parent"
        android:layout_height="2dp"
        android:background="#dfdfdf"
        android:layout_marginBottom="0dp"
        android:layout_gravity="bottom"/>
    <LinearLayout
        android:id="@+id/writing_area"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:minHeight="40dp"
        android:layout_gravity="bottom">
        <EditText
            android:id="@+id/written_text"
            android:hint="Enter message"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:layout_marginLeft="16dp"
            android:layout_marginRight="16dp"
            android:maxLines="6"
            android:gravity="center_vertical"
            android:background="@android:color/transparent"/> 
    </LinearLayout>
</LinearLayout>

适配器的getView是

public View getView(int position, View convertView, ViewGroup parent ) {
    Log.v(TAG,"getView: called");
    Item date = getItem(position);
    Log.v(TAG,"getView called with data");
       convertView = mInflator.inflate(R.layout.item, parent,false);
TextView view = (TextView) convertView.findViewById(R.id.text);
    view.setText(message.getText());
    return convertView;
}

项目xml文件是

<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="4dp"
app:layout_constraintRight_toRightOf="parent">
<TextView
    android:id="@+id/text"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/orange_rounded_rectangle"
    android:padding="8dp"
    android:textColor="#ffffff"
    android:layout_marginTop="4dp"
    android:layout_marginRight="4dp"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    android:maxWidth="240dp" />


</android.support.constraint.ConstraintLayout>

行为没有模式。它有时会发生,而且当文本区域有多行时,它不会发生。

我尝试了各种解决方法。 我检查了视图的布局线。它表明listview宽度已经改变了。列表视图边界已缩小,因此列表元素被强制在左侧,即使它们与父项的边界对齐。

我也查了一下日志。它们都通过使用正确的列表元素xml文件来重新渲染,该文件应该将它们对齐。

我尝试使用其他布局但不能使用滚动视图,因为列表也是可滚动的。 我也试过约束布局,但它停止显示文本区域。该列表占据工具栏下方的所有空间,因为它具有权重1,文本区域应具有wrap_content高度。

0 个答案:

没有答案