Fix Grid tab's option list vanish issue

 - After ag/11395012, we change the recyclerview to grid display, make
 the list vanish, change the layout_height to wrap_content not fixed
 value to fix it.
 - Symptom: https://screenshot.googleplex.com/TfBcNyBNUhQ.png
 - Fix result: https://screenshot.googleplex.com/h3DYdNST8s0.png

Change-Id: I7b04b164419ed06eeafab779ba8395dce3af77bb
diff --git a/res/layout/fragment_grid_picker.xml b/res/layout/fragment_grid_picker.xml
index 5238137..af70e0c 100644
--- a/res/layout/fragment_grid_picker.xml
+++ b/res/layout/fragment_grid_picker.xml
@@ -56,7 +56,7 @@
             <androidx.recyclerview.widget.RecyclerView
                 android:id="@+id/options_container"
                 android:layout_width="match_parent"
-                android:layout_height="@dimen/options_container_height"
+                android:layout_height="wrap_content"
                 android:layout_gravity="center_horizontal"/>
         </LinearLayout>