如何在 Edittext 下显示列表(RecyclerView)的下拉动画?

How to show dropdown Animation for a list(RecyclerView) under Edittext?

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

Recycler 视图应该从 Edit-text 后面滑下,但在滑下之前它就可见了。

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

<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>