gpt4 book ai didi

android - 使用 ConstraintLayout 将水平 recyclerview 放置在特定位置

转载 作者:行者123 更新时间:2023-11-29 23:18:56 25 4
gpt4 key购买 nike

我想将我的水平 recyclerview 放置在屏幕宽度的 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 一个垂直约束,所以发生的事情是在运行时你的 recyclerView 只是跳到屏幕的顶部。

当我复制你的代码时,我看到了这个错误:

This view is not constrained vertically: at runtime, it will jump to the top unless you add a vertical constraint

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

当然,我不会在没有良好的工作布局的情况下离开你 - 这是我为 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"/>

关于android - 使用 ConstraintLayout 将水平 recyclerview 放置在特定位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54804848/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com