所以,问题在于即使在为文本视图分配权重1之后,我也无法使团队A和团队B集中对齐。我使用约束布局而不是线性或相对。此外,我不想通过设置边距或类似情况为A队和B队做出那些对齐。因此,如果有适当的属性,请告诉。
代码:
function ensureAuthenticated (req, res, next) {
if (req.isAuthenticated()) {
return next()
} else {
res.redirect('/users/login') // ignored
}
}
答案 0 :(得分:0)
您可以在约束布局中使用子视图链。我已经在团队名称和分数中实现了它。你可以为其他人做同样的事情。
<?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/team_nameA"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:padding="4dp"
android:text="Team A"
android:textAlignment="center"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintRight_toLeftOf="@+id/team_nameB"/>
<TextView
android:id="@+id/team_nameB"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:padding="4dp"
android:text="Team B"
android:textAlignment="center"
app:layout_constraintLeft_toRightOf="@+id/team_nameA"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"/>
<TextView
android:id="@+id/team_a_score"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="7dp"
android:gravity="center_horizontal"
android:padding="4dp"
android:text="0"
app:layout_constraintHorizontal_weight="1"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toBottomOf="@+id/team_nameA"
app:layout_constraintRight_toLeftOf="@+id/team_b_score"/>
<TextView
android:id="@+id/team_b_score"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:gravity="center_horizontal"
android:padding="4dp"
android:text="1"
app:layout_constraintHorizontal_weight="1"
app:layout_constraintLeft_toRightOf="@+id/team_a_score"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@+id/team_nameB"
/>
</android.support.constraint.ConstraintLayout>
如果出现其他问题,请随时提出