mirror of
				https://github.com/TeamNewPipe/NewPipe
				synced 2025-10-30 23:03:00 +00:00 
			
		
		
		
	Merge pull request #6782 from TacoTheDank/fix-fill-parent
Fix deprecated fill_parent attributes
This commit is contained in:
		| @@ -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"> | ||||
|  | ||||
|   | ||||
| @@ -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> | ||||
|   | ||||
| @@ -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 | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Stypox
					Stypox