代码之家  ›  专栏  ›  技术社区  ›  Nima Khalili

单击SearchView后移动RecyclerView

  •  0
  • Nima Khalili  · 技术社区  · 6 年前

    在我的程序中,我使用了一个带有recyclerview的搜索视图,在xml中,搜索视图位于recycler视图上方。现在我的问题是,当我单击search view位置时,recyclerview的位置会上升并放置在搜索视图上。

    我使用ConstraintLayout,如果我更改了项目布局连接,按钮也会上升

    enter image description here

    enter image description here

    XML:

    <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"
    tools:context="com.example.user.classmanager.StudentList"
    tools:layout_editor_absoluteY="25dp"
    tools:layout_editor_absoluteX="0dp">
    
    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar_StudentList"
        android:layout_width="0dp"
        android:layout_height="56dp"
        android:minHeight="?attr/actionBarSize"
        android:theme="?attr/actionBarTheme"
        tools:layout_constraintTop_creator="1"
        tools:layout_constraintRight_creator="1"
        app:layout_constraintRight_toRightOf="parent"
        tools:layout_constraintLeft_creator="1"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintTop_toTopOf="parent" />
    
    <Button
        android:id="@+id/button_StudentList"
        android:layout_width="35dp"
        android:layout_height="35dp"
        android:layout_marginBottom="8dp"
        android:layout_marginEnd="8dp"
        android:layout_marginLeft="8dp"
        android:layout_marginRight="8dp"
        android:layout_marginStart="8dp"
        android:text="B"
        app:layout_constraintBottom_toBottomOf="@+id/searchView_StudentList"
        app:layout_constraintHorizontal_bias="0.307"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toLeftOf="@+id/searchView_StudentList"
        app:layout_constraintTop_toTopOf="@+id/searchView_StudentList"
        app:layout_constraintVertical_bias="1.0"
        tools:layout_constraintLeft_creator="1"
        tools:layout_constraintTop_creator="1" />
    
    <android.support.v7.widget.RecyclerView
        android:id="@+id/recycler_view_StudentList"
        android:layout_width="370dp"
        android:layout_height="450dp"
        android:layout_marginBottom="0dp"
        android:layout_marginEnd="5dp"
        android:layout_marginLeft="5dp"
        android:layout_marginRight="5dp"
        android:layout_marginStart="5dp"
        android:layout_marginTop="8dp"
        android:paddingLeft="7dp"
        android:paddingRight="7dp"
        android:paddingTop="22dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/searchView_StudentList"
        app:layout_constraintVertical_bias="0.371"
        tools:layout_constraintBottom_creator="1"
        tools:layout_constraintLeft_creator="1"
        tools:layout_constraintRight_creator="1" />
    
    <SearchView
        android:id="@+id/searchView_StudentList"
        android:layout_width="300dp"
        android:layout_height="0dp"
        android:layout_marginEnd="7dp"
        android:layout_marginRight="7dp"
        android:layout_marginTop="13dp"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/toolbar_StudentList"
        tools:layout_constraintRight_creator="1"
        tools:layout_constraintTop_creator="1" />
    

    2 回复  |  直到 6 年前
        1
  •  1
  •   Santanu Sur    6 年前

    移除固定高度的 recyclerView

      android:layout_height="wrap_content" 
    

    或( 较好的 )删除此

      app:layout_constraintBottom_toBottomOf="parent"
    

    约束布局无法解析dp中的固定高度以及父级底部上方的固定高度( 有点像循环依赖 )

        2
  •  0
  •   Shamsul Arafin Mahtab    6 年前

    您应该使用 LinearLayout 其中 vertical orientation

    如果要使用 RelativeLayout ,只需在xml视图中添加该行。

    android:layout_below="@+id/view_id" //Positions the top edge of this view below the given anchor view ID.
    

    但我认为您使用了ConstraintLayout。因为只有此布局才能创建 这类问题。因此,如果您 使用它。