将ListView与其他视图对齐

时间:2017-11-11 13:53:19

标签: android android-layout listview

我有EditText,与其下方的其他TextView对齐。

enter image description here

但是,只要我添加ListView,并尝试左侧与纯文字对齐,其下方的EditTextTextView字段的宽度和位置就会发生变化。

此外,如果我尝试使用其他线性布局而不是ListView,我会面临同样的问题。我在这里做错了什么?

我已尝试将listView的宽度和高度设置为match_contraint,但这也不起作用。

enter image description here

下面是xml,

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.example.testapp.app">

    <EditText
        android:id="@+id/editText6"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginStart="32dp"
        android:layout_marginTop="16dp"
        android:ems="10"
        android:inputType="textPersonName"
        android:text="Name"
        app:layout_constraintHorizontal_weight="1"
        app:layout_constraintStart_toStartOf="@+id/listView4"
        app:layout_constraintTop_toTopOf="parent" />

    <TextView
        android:id="@+id/textView"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginTop="8dp"
        android:text="TextView"
        app:layout_constraintEnd_toEndOf="@+id/editText6"
        app:layout_constraintStart_toStartOf="@+id/editText6"
        app:layout_constraintTop_toBottomOf="@+id/editText6" />

    <TextView
        android:id="@+id/textView3"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginTop="8dp"
        android:text="TextView"
        app:layout_constraintEnd_toEndOf="@+id/textView"
        app:layout_constraintStart_toStartOf="@+id/editText6"
        app:layout_constraintTop_toBottomOf="@+id/textView" />

    <ListView
        android:id="@+id/listView4"
        android:layout_width="395dp"
        android:layout_height="472dp"
        app:layout_constraintHorizontal_weight="0"
        tools:layout_editor_absoluteX="8dp"
        tools:layout_editor_absoluteY="123dp" />

</android.support.constraint.ConstraintLayout>

1 个答案:

答案 0 :(得分:1)

我认为你把限制放在了错误的方向。因此,您将所有TextView对齐到EditText的开头。但EditText依次与ListView的开头对齐。

app:layout_constraintStart_toStartOf="@+id/listView4"

由于ListView没有对齐,我猜它位于(0,0)。