使用ConstraintLayout将水平回收视图放置在特定位置

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用ConstraintLayout将水平回收视图放置在特定位置相关的知识,希望对你有一定的参考价值。

我想从开始时将我的水平回收视图放在30%的屏幕宽度上

<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.v7.widget.RecyclerView
        android:id="@+id/recycler"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:clipToPadding="false"
        android:orientation="horizontal"
        android:paddingStart="20dp"
        android:paddingEnd="20dp"
        android:background="@android:color/white"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toEndOf="@id/guideline" />

    <android.support.constraint.Guideline
        android:id="@+id/guideline"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        app:layout_constraintGuide_percent="0.3" />

</android.support.constraint.ConstraintLayout>

但是,如果没有想法如何实现这一目标,那么不会在屏幕上显示再循环视图。

答案

你从来没有给你的recyclerView一个垂直约束,所以发生的事情就是在运行时你的recyclerView只是跳到了屏幕的顶部。 当我复制你的代码时,我看到了这个错误:

此视图不受垂直约束:在运行时,除非添加垂直约束,否则它将跳转到顶部

一些提示 - 如果您在XML /设计中的红色警告按钮上看到视图中的红线,您应该真正查看错误并相应地更改布局。

当然,如果没有良好的工作布局,我不会离开你 - 这是我为recyclerView开始的布局,从30%的屏幕开始,我已经检查了它的工作。 (我正在使用androidx,但如果你愿意,只需将其更改为支持库)

<androidx.constraintlayout.widget.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">

<androidx.constraintlayout.widget.Guideline
    android:id="@+id/guideline2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    app:layout_constraintGuide_percent="0.3"/>

<androidx.recyclerview.widget.RecyclerView
    android:layout_width="0dp"
    android:layout_height="0dp"
    android:layout_marginStart="8dp"
    android:layout_marginTop="8dp"
    android:layout_marginEnd="8dp"
    android:layout_marginBottom="16dp"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintHorizontal_bias="0.506"
    app:layout_constraintStart_toStartOf="@+id/guideline2"
    app:layout_constraintTop_toTopOf="parent"
    android:background="@color/colorPrimaryDark"/>

另一答案

你的RecyclerView缺少垂直约束;添加至少一个以便可以呈现视图。

受限于顶部:

app:layout_constraintTop_toTopOf="parent"

如果您希望它使用整个父级,也可以添加以下内容:

android:layout_height="0dp"
app:layout_constraintBottom_toBottomOf="parent"
另一答案

取而代之的是删除ConstraintLayout并使用Linearlayout,而不是在guideline和RecyclerView中相应地使用android:weight=属性。

另一答案

这对你来说很好

<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.v7.widget.RecyclerView
        android:id="@+id/recycler"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:clipToPadding="false"
        android:orientation="horizontal"
        android:paddingStart="20dp"
        android:paddingEnd="20dp"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toEndOf="@id/guideline"
        app:layout_constraintBottom_toBottomOf="parent"
        />

    <androidx.constraintlayout.widget.Guideline
        android:id="@+id/guideline"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical"
       app:layout_constraintGuide_percent=".3" />


</android.support.constraint.ConstraintLayout>

以上是关于使用ConstraintLayout将水平回收视图放置在特定位置的主要内容,如果未能解决你的问题,请参考以下文章

掌握ConstraintLayout按比例设置视图大小

使用 Android ConstraintLayout 使视图居中出现问题

使用 ConstraintLayout 以编程方式连接设置为任意大小的多个视图

带有视频和文本的水平回收站视图

Constraintlayout Vertical Bias 在Android的两个视图中不起作用

ConstraintLayout中的Android RecyclerView不滚动