mirror of
				https://github.com/TeamNewPipe/NewPipe
				synced 2025-10-31 07:13:00 +00:00 
			
		
		
		
	Add space above channel description (About tab)
This commit is contained in:
		| @@ -35,7 +35,7 @@ import io.reactivex.rxjava3.disposables.CompositeDisposable; | ||||
|  | ||||
| public abstract class BaseDescriptionFragment extends BaseFragment { | ||||
|     final CompositeDisposable descriptionDisposables = new CompositeDisposable(); | ||||
|     FragmentDescriptionBinding binding; | ||||
|     protected FragmentDescriptionBinding binding; | ||||
|  | ||||
|     @Override | ||||
|     public View onCreateView(@NonNull final LayoutInflater inflater, | ||||
|   | ||||
| @@ -3,7 +3,9 @@ package org.schabi.newpipe.fragments.list.channel; | ||||
| import static org.schabi.newpipe.extractor.stream.StreamExtractor.UNKNOWN_SUBSCRIBER_COUNT; | ||||
|  | ||||
| import android.content.Context; | ||||
| import android.os.Bundle; | ||||
| import android.view.LayoutInflater; | ||||
| import android.view.View; | ||||
| import android.widget.LinearLayout; | ||||
|  | ||||
| import androidx.annotation.Nullable; | ||||
| @@ -13,6 +15,7 @@ import org.schabi.newpipe.extractor.StreamingService; | ||||
| import org.schabi.newpipe.extractor.channel.ChannelInfo; | ||||
| import org.schabi.newpipe.extractor.stream.Description; | ||||
| import org.schabi.newpipe.fragments.detail.BaseDescriptionFragment; | ||||
| import org.schabi.newpipe.util.DeviceUtils; | ||||
| import org.schabi.newpipe.util.Localization; | ||||
|  | ||||
| import java.util.List; | ||||
| @@ -33,6 +36,12 @@ public class ChannelAboutFragment extends BaseDescriptionFragment { | ||||
|         super(); | ||||
|     } | ||||
|  | ||||
|     @Override | ||||
|     protected void initViews(final View rootView, final Bundle savedInstanceState) { | ||||
|         super.initViews(rootView, savedInstanceState); | ||||
|         binding.constraintLayout.setPadding(0, DeviceUtils.dpToPx(8, requireContext()), 0, 0); | ||||
|     } | ||||
|  | ||||
|     @Nullable | ||||
|     @Override | ||||
|     protected Description getDescription() { | ||||
|   | ||||
| @@ -8,6 +8,7 @@ | ||||
|     android:scrollbars="vertical"> | ||||
|  | ||||
|     <androidx.constraintlayout.widget.ConstraintLayout | ||||
|         android:id="@+id/constraint_layout" | ||||
|         android:layout_width="match_parent" | ||||
|         android:layout_height="wrap_content" | ||||
|         android:animateLayoutChanges="true"> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Stypox
					Stypox