2
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2025-08-31 06:35:19 +00:00

Merge pull request #6782 from TacoTheDank/fix-fill-parent

Fix deprecated fill_parent attributes
This commit is contained in:
Stypox
2021-07-27 19:45:51 +02:00
committed by GitHub
3 changed files with 4 additions and 4 deletions

View File

@@ -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">

View File

@@ -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>

View File

@@ -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