Skip to content

Commit 5924edb

Browse files
authored
Merge pull request #6782 from TacoTheDank/fix-fill-parent
Fix deprecated fill_parent attributes
2 parents 5ceec31 + e2791cd commit 5924edb

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

app/src/main/res/layout/activity_error.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
android:textColor="?attr/colorAccent" />
7373

7474
<HorizontalScrollView
75-
android:layout_width="fill_parent"
75+
android:layout_width="match_parent"
7676
android:layout_height="wrap_content"
7777
android:paddingLeft="16dp">
7878

app/src/main/res/layout/fragment_main.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<androidx.viewpager.widget.ViewPager
2121
android:id="@+id/pager"
2222
android:layout_width="match_parent"
23-
android:layout_height="fill_parent"
23+
android:layout_height="match_parent"
2424
android:layout_below="@id/main_tab_layout" />
2525

2626
</RelativeLayout>

app/src/main/res/layout/missions.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2-
android:layout_width="fill_parent"
3-
android:layout_height="fill_parent"
2+
android:layout_width="match_parent"
3+
android:layout_height="match_parent"
44
android:orientation="vertical">
55

66
<include

0 commit comments

Comments
 (0)