I'm using a LinearLayout with a ReciclerView and 3 buttons underneath it.
I'm doing this, but ReciclerView takes up the entire screen and the buttons do not appear.
<?xmlversion="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@color/salmao"
tools:context="br.com.robson.boascompras.ListasComprasActivity">
<android.support.v7.widget.RecyclerView
android:id="@+id/my_recycler_view"
android:scrollbars="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:gravity="center">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/editar"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/excluir"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/nova_lista"/>
</LinearLayout>
</LinearLayout>