fix remaining fragment view layouts

The layout_width="1" thing is critical!
This commit is contained in:
Eric House 2017-01-31 08:03:13 -08:00
parent 352508b852
commit 0fedcf56ab
2 changed files with 4 additions and 2 deletions

View file

@ -17,6 +17,7 @@
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
>
<CheckBox android:id="@+id/game_locked_check"

View file

@ -2,8 +2,9 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:paddingLeft="8dp"
android:paddingRight="8dp"
>