代码之家  ›  专栏  ›  技术社区  ›  CrazyProgrammerThing

如何在Edittext下显示列表(RecyclerView)的下拉动画?[已关闭]

  •  -2
  • CrazyProgrammerThing  · 技术社区  · 6 年前

    我正在尝试使用“编辑文本”下的“回收器视图”显示下拉列表。

    回收器视图应该从编辑文本的后面向下滑动,但在向下滑动之前它是可见的。 As you can see recycler view is sliding down from behind the edit text but it is also visible before the edit text Recycler view is completely visible in the second picture as a drop-down list

    1 回复  |  直到 6 年前
        1
  •  1
  •   yatin deokar    6 年前

    试试这个,我希望这对你有帮助。

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@color/green">
    
        <fragment
            android:id="@+id/google_map_fragment"
            android:name="com.google.android.gms.maps.MapFragment"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            class="com.google.android.gms.maps.SupportMapFragment"/>
    
    
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical">
    
            <android.support.v7.widget.SearchView
                android:layout_width="match_parent"
                android:layout_height="wrap_content" />
    
            <android.support.v7.widget.RecyclerView
                android:layout_width="match_parent"
                android:layout_height="200dp"
                android:layout_marginLeft="15dp">
            </android.support.v7.widget.RecyclerView>
    
    
        </LinearLayout>
    
    
    </RelativeLayout>