mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-04 23:02:02 +01:00
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:
parent
831af47411
commit
43a90cc048
1 changed files with 3 additions and 2 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue