fix failure to collapse

The problem appears to be that the new <vector/> .xml drawable has a
greater height for purposes of layout. Specifying dimensions seems to be
the way to go, though devices may vary.
This commit is contained in:
Eric House 2020-04-09 16:50:31 -07:00
parent b74a1c4420
commit 48ed6cbca6

View file

@ -39,8 +39,9 @@
android:paddingRight="8dip"
>
<ImageView android:id="@+id/game_type_marker"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_centerInParent="true"
android:src="@drawable/ic_multigame"
/>
<ImageView android:id="@+id/has_chat_marker"