Android ConstraintLayout移动微调器的位置

问题描述 投票:0回答:2

我正在尝试使用布局底部的微调器来创建图库,这会更改图库目录。不幸的是,微调器总是向上移动(或者RecyclerView约束向下移动?)。这是我的代码:

<?xml version="1.0" encoding="utf-8"?>
<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"
    tools:context=".ProjectActivity">

    <LinearLayout
        android:id="@+id/linearLayout"
        android:layout_width="match_parent"
        android:layout_height="100dp"
        android:orientation="horizontal"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent">

        <Spinner
            android:id="@+id/spinnerProject"
            android:layout_width="141dp"
            android:layout_height="100dp" />
    </LinearLayout>

    <androidx.recyclerview.widget.RecyclerView
        android:id="@+id/gallery"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:layout_constraintBottom_toTopOf="@+id/linearLayout"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"/>

</androidx.constraintlayout.widget.ConstraintLayout>

这是结果:enter image description here

任何主意怎么了?

android android-layout android-recyclerview android-spinner android-constraintlayout
2个回答
1
投票

对于这种类型的垂直线性布局,请始终尝试使用ConstraintLayout提供的垂直链接。这是XML的更新代码。

<?xml version="1.0" encoding="utf-8"?>
 <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">


<Spinner
    android:id="@+id/spinnerProject"
    android:layout_width="match_parent"
    android:layout_height="100dp"
    app:layout_constraintTop_toBottomOf="@+id/gallery"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent" />

<androidx.recyclerview.widget.RecyclerView
    android:id="@+id/gallery"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    app:layout_constraintBottom_toTopOf="@+id/spinnerProject"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent" />


0
投票

这是因为对于ConstraintLayout,您必须在视图的所有形式上为每个视图添加约束。

您发生的问题是因为尚未为Spinner Linear Layout添加Top Constraing。

更改:

<LinearLayout
       android:id="@+id/linearLayout"
       android:layout_width="match_parent"
       android:layout_height="100dp"
       android:orientation="horizontal"
       app:layout_constraintBottom_toBottomOf="parent"
       app:layout_constraintEnd_toEndOf="parent"
      app:layout_constraintTop_toBottomOf="@+id/gallery
      app:layout_constraintStart_toStartOf="parent">

       <Spinner
           android:id="@+id/spinnerProject"
          android:layout_width="141dp"
           android:layout_height="100dp" />
    </LinearLayout>

添加此行:

     app:layout_constraintTop_toBottomOf="@+id/gallery

如果这不起作用,则可以更轻松地使用LinearLayout或RelativeLayout而不是使用ConstraintLayout。

© www.soinside.com 2019 - 2024. All rights reserved.