mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-14 14:20:30 +05:30
remove unused reference
This commit is contained in:
parent
cc528055f6
commit
4502e07fc6
@ -68,7 +68,6 @@ class OfflinePlayerActivity : BaseActivity() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
binding.player.initialize(
|
binding.player.initialize(
|
||||||
supportFragmentManager,
|
|
||||||
null,
|
null,
|
||||||
binding.doubleTapOverlay.binding,
|
binding.doubleTapOverlay.binding,
|
||||||
null
|
null
|
||||||
|
@ -757,7 +757,6 @@ class PlayerFragment : BaseFragment(), OnlinePlayerOptions {
|
|||||||
private fun initializePlayerView(response: Streams) {
|
private fun initializePlayerView(response: Streams) {
|
||||||
// initialize the player view actions
|
// initialize the player view actions
|
||||||
binding.player.initialize(
|
binding.player.initialize(
|
||||||
childFragmentManager,
|
|
||||||
this,
|
this,
|
||||||
doubleTapOverlayBinding,
|
doubleTapOverlayBinding,
|
||||||
trackSelector
|
trackSelector
|
||||||
|
@ -8,13 +8,13 @@ import android.os.Looper
|
|||||||
import android.util.AttributeSet
|
import android.util.AttributeSet
|
||||||
import android.view.MotionEvent
|
import android.view.MotionEvent
|
||||||
import android.view.View
|
import android.view.View
|
||||||
import androidx.fragment.app.FragmentManager
|
|
||||||
import com.github.libretube.R
|
import com.github.libretube.R
|
||||||
import com.github.libretube.databinding.DoubleTapOverlayBinding
|
import com.github.libretube.databinding.DoubleTapOverlayBinding
|
||||||
import com.github.libretube.databinding.ExoStyledPlayerControlViewBinding
|
import com.github.libretube.databinding.ExoStyledPlayerControlViewBinding
|
||||||
import com.github.libretube.extensions.toDp
|
import com.github.libretube.extensions.toDp
|
||||||
import com.github.libretube.obj.BottomSheetItem
|
import com.github.libretube.obj.BottomSheetItem
|
||||||
import com.github.libretube.ui.activities.MainActivity
|
import com.github.libretube.ui.activities.MainActivity
|
||||||
|
import com.github.libretube.ui.base.BaseActivity
|
||||||
import com.github.libretube.ui.interfaces.DoubleTapInterface
|
import com.github.libretube.ui.interfaces.DoubleTapInterface
|
||||||
import com.github.libretube.ui.interfaces.DoubleTapListener
|
import com.github.libretube.ui.interfaces.DoubleTapListener
|
||||||
import com.github.libretube.ui.interfaces.OnlinePlayerOptions
|
import com.github.libretube.ui.interfaces.OnlinePlayerOptions
|
||||||
@ -41,7 +41,6 @@ internal class CustomExoPlayerView(
|
|||||||
*/
|
*/
|
||||||
private var doubleTapListener: DoubleTapInterface? = null
|
private var doubleTapListener: DoubleTapInterface? = null
|
||||||
private var playerOptionsInterface: OnlinePlayerOptions? = null
|
private var playerOptionsInterface: OnlinePlayerOptions? = null
|
||||||
private lateinit var childFragmentManager: FragmentManager
|
|
||||||
private var trackSelector: TrackSelector? = null
|
private var trackSelector: TrackSelector? = null
|
||||||
|
|
||||||
private val runnableHandler = Handler(Looper.getMainLooper())
|
private val runnableHandler = Handler(Looper.getMainLooper())
|
||||||
@ -58,6 +57,9 @@ internal class CustomExoPlayerView(
|
|||||||
|
|
||||||
private var resizeModePref = PlayerHelper.resizeModePref
|
private var resizeModePref = PlayerHelper.resizeModePref
|
||||||
|
|
||||||
|
private val supportFragmentManager
|
||||||
|
get() = (context as BaseActivity).supportFragmentManager
|
||||||
|
|
||||||
private fun toggleController() {
|
private fun toggleController() {
|
||||||
if (isControllerFullyVisible) hideController() else showController()
|
if (isControllerFullyVisible) hideController() else showController()
|
||||||
}
|
}
|
||||||
@ -73,12 +75,10 @@ internal class CustomExoPlayerView(
|
|||||||
}
|
}
|
||||||
|
|
||||||
fun initialize(
|
fun initialize(
|
||||||
childFragmentManager: FragmentManager,
|
|
||||||
playerViewInterface: OnlinePlayerOptions?,
|
playerViewInterface: OnlinePlayerOptions?,
|
||||||
doubleTapOverlayBinding: DoubleTapOverlayBinding,
|
doubleTapOverlayBinding: DoubleTapOverlayBinding,
|
||||||
trackSelector: TrackSelector?
|
trackSelector: TrackSelector?
|
||||||
) {
|
) {
|
||||||
this.childFragmentManager = childFragmentManager
|
|
||||||
this.playerOptionsInterface = playerViewInterface
|
this.playerOptionsInterface = playerViewInterface
|
||||||
this.doubleTapOverlayBinding = doubleTapOverlayBinding
|
this.doubleTapOverlayBinding = doubleTapOverlayBinding
|
||||||
this.trackSelector = trackSelector
|
this.trackSelector = trackSelector
|
||||||
@ -219,7 +219,7 @@ internal class CustomExoPlayerView(
|
|||||||
}
|
}
|
||||||
|
|
||||||
val bottomSheetFragment = BaseBottomSheet().setItems(items, null)
|
val bottomSheetFragment = BaseBottomSheet().setItems(items, null)
|
||||||
bottomSheetFragment.show(childFragmentManager, null)
|
bottomSheetFragment.show(supportFragmentManager, null)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -332,11 +332,11 @@ internal class CustomExoPlayerView(
|
|||||||
1 -> autoplayEnabled = false
|
1 -> autoplayEnabled = false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.show(childFragmentManager)
|
.show(supportFragmentManager)
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onPlaybackSpeedClicked() {
|
override fun onPlaybackSpeedClicked() {
|
||||||
player?.let { PlaybackSpeedSheet(it).show(childFragmentManager) }
|
player?.let { PlaybackSpeedSheet(it).show(supportFragmentManager) }
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onResizeModeClicked() {
|
override fun onResizeModeClicked() {
|
||||||
@ -354,7 +354,7 @@ internal class CustomExoPlayerView(
|
|||||||
.setSimpleItems(aspectRatioModeNames) { index ->
|
.setSimpleItems(aspectRatioModeNames) { index ->
|
||||||
resizeMode = aspectRatioModes[index]
|
resizeMode = aspectRatioModes[index]
|
||||||
}
|
}
|
||||||
.show(childFragmentManager)
|
.show(supportFragmentManager)
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onRepeatModeClicked() {
|
override fun onRepeatModeClicked() {
|
||||||
@ -373,7 +373,7 @@ internal class CustomExoPlayerView(
|
|||||||
.setSimpleItems(repeatModeNames) { index ->
|
.setSimpleItems(repeatModeNames) { index ->
|
||||||
player?.repeatMode = repeatModes[index]
|
player?.repeatMode = repeatModes[index]
|
||||||
}
|
}
|
||||||
.show(childFragmentManager)
|
.show(supportFragmentManager)
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onConfigurationChanged(newConfig: Configuration?) {
|
override fun onConfigurationChanged(newConfig: Configuration?) {
|
||||||
|
Loading…
Reference in New Issue
Block a user