代码之家  ›  专栏  ›  技术社区  ›  Jithish P N

ConstraintLayout在ScrollView中,始终指导线高度变化

  •  0
  • Jithish P N  · 技术社区  · 7 年前

    ConstraintLayout位于NestedScrollView中,始终指导线高度变化。

    基准高度百分比不起作用。它的变化取决于recylerview和其他视图内容。如何解决此问题,将指导线高度设置为固定的内部滚动视图

    代码

     <android.support.v4.widget.NestedScrollView
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    
    android:fillViewport="true"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    
    <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"
         android:id="@+id/top_clay"
        android:paddingLeft="0dp"
        android:paddingRight="0dp">
    
        <android.support.constraint.Guideline
            android:id="@+id/guideline_graph"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="horizontal"
            app:layout_constraintGuide_percent="0.35" />
    
                  <TextView
    
            android:id="@+id/vpager_dsv"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
    
            app:layout_constraintTop_toBottomOf="@+id/guideline_graph" />
    
    
           <android.support.v7.widget.RecyclerView
            android:id="@+id/rcv"
            android:layout_width="0dp"
    
            android:layout_height="wrap_content"
            android:layout_marginBottom="20dp"
            android:nestedScrollingEnabled="false"
            android:layout_marginTop="10dp"
    
            android:layout_marginLeft="10dp"
    
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintRight_toRightOf="parent"
            app:layout_constraintStart_toStartOf="parent"
    
    
            app:layout_constraintTop_toBottomOf="@+id/guideline_graph"> 
       </android.support.v7.widget.RecyclerView>
     </android.support.constraint.ConstraintLayout>
    

    1 回复  |  直到 7 年前
        1
  •  1
  •   pop    7 年前

    {@code guideline}{@see guideline}对象允许您创建* 相对于 {@code constraintlayout}容器。

    上述文本是从约束布局文档中复制的。根据容器大小定位指南。因此,基于约束布局准则内的视图大小,将改变其位置。

    我认为这种行为是意料之中的。