Skip to content

Commit

Permalink
Merge pull request #6782 from TacoTheDank/fix-fill-parent
Browse files Browse the repository at this point in the history
Fix deprecated fill_parent attributes
  • Loading branch information
Stypox authored Jul 27, 2021
2 parents 5ceec31 + e2791cd commit 5924edb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/src/main/res/layout/activity_error.xml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
android:textColor="?attr/colorAccent" />

<HorizontalScrollView
android:layout_width="fill_parent"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingLeft="16dp">

Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/fragment_main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<androidx.viewpager.widget.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:layout_height="match_parent"
android:layout_below="@id/main_tab_layout" />

</RelativeLayout>
4 changes: 2 additions & 2 deletions app/src/main/res/layout/missions.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<include
Expand Down

0 comments on commit 5924edb

Please sign in to comment.