使用分隔符间距定义listview项时出现Constraintlayout问题

时间:2018-03-29 16:18:54

标签: android android-constraintlayout

使用ConstraintLayout(我没有使用RelativeLayout)时,我对listview的分隔符有一个愚蠢的问题。

以下是描述我的问题的图片。上部分隔器的空间与下部分隔器的位置不同:

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">


    <TextView
        android:id="@+id/appd_permlist"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginEnd="60dp"
        android:layout_marginStart="16dp"
        android:layout_marginTop="8dp"
        android:text="TextView"
        android:textSize="@dimen/a_xlarge"
        app:layout_constraintEnd_toStartOf="@+id/appd_risk"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <TextView
        android:id="@+id/appd_risk"
        android:layout_width="90dp"
        android:layout_height="30dp"
        android:layout_marginEnd="60dp"
        android:background="@color/lgrey"
        app:layout_constraintBottom_toBottomOf="@+id/appd_permlist"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toTopOf="@+id/appd_permlist" />
</android.support.constraint.ConstraintLayout>

1 个答案:

答案 0 :(得分:1)

我将做一些假设:

  • 行的高度应由appd_risk视图定义(因为它具有固定的高度)
  • appd_permlist应垂直居中于上面定义的空间

在这种情况下,这是一个有效的布局:

<?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="wrap_content">

    <TextView
        android:id="@+id/appd_permlist"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginStart="16dp"
        android:layout_marginEnd="60dp"
        android:textSize="@dimen/a_xlarge"
        android:text="TextView"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toStartOf="@+id/appd_risk"
        app:layout_constraintStart_toStartOf="parent"/>

    <TextView
        android:id="@+id/appd_risk"
        android:layout_width="90dp"
        android:layout_height="30dp"
        android:layout_marginEnd="60dp"
        android:background="@color/lgrey"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"/>

</android.support.constraint.ConstraintLayout>

我已将ConstraintLayout的高度更改为wrap_content,然后我将appd_risk顶部/底部约束更改为parent,这使得行高30dp(或者其他你为appd_risk选择的大小。

然后我从appd_permlist移除了上边距,并为parent添加了一个底部约束。这将垂直居中appd_permlist