使用ConstraintLayout(我没有使用RelativeLayout)时,我对listview的分隔符有一个愚蠢的问题。
以下是描述我的问题的图片。上部分隔器的空间与下部分隔器的位置不同:
这是我的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>
答案 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
。