88 lines
No EOL
3.2 KiB
Kotlin
88 lines
No EOL
3.2 KiB
Kotlin
/* NewPlayer
|
|
*
|
|
* @author Christian Schabesberger
|
|
*
|
|
* Copyright (C) NewPipe e.V. 2024 <code(at)newpipe-ev.de>
|
|
*
|
|
* NewPlayer is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* NewPlayer is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with NewPlayer. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
package net.newpipe.newplayer
|
|
|
|
import android.os.Bundle
|
|
import android.view.LayoutInflater
|
|
import android.view.View
|
|
import android.view.ViewGroup
|
|
import android.widget.FrameLayout
|
|
import androidx.compose.ui.platform.ComposeView
|
|
import androidx.compose.ui.platform.ViewCompositionStrategy
|
|
import androidx.constraintlayout.widget.ConstraintLayout
|
|
import androidx.core.view.WindowCompat
|
|
import androidx.core.view.WindowInsetsControllerCompat
|
|
import androidx.core.view.updateLayoutParams
|
|
import androidx.fragment.app.Fragment
|
|
import androidx.fragment.app.viewModels
|
|
import dagger.hilt.android.AndroidEntryPoint
|
|
import net.newpipe.newplayer.internal.model.VideoPlayerViewModel
|
|
import net.newpipe.newplayer.internal.model.VideoPlayerViewModelImpl
|
|
import net.newpipe.newplayer.internal.ui.VideoPlayerUI
|
|
import net.newpipe.newplayer.internal.ui.theme.VideoPlayerTheme
|
|
|
|
@AndroidEntryPoint
|
|
class VideoPlayerFragment() : Fragment() {
|
|
|
|
private val viewModel: VideoPlayerViewModel by viewModels<VideoPlayerViewModelImpl>()
|
|
|
|
override fun onCreateView(
|
|
inflater: LayoutInflater,
|
|
container: ViewGroup?,
|
|
savedInstanceState: Bundle?
|
|
): View? {
|
|
|
|
|
|
val window = activity?.window!!
|
|
val insetsController = WindowCompat.getInsetsController(window, window.decorView)
|
|
insetsController.systemBarsBehavior = WindowInsetsControllerCompat.BEHAVIOR_SHOW_TRANSIENT_BARS_BY_SWIPE
|
|
|
|
if (viewModel.uiState.value.fullscreen) {
|
|
//println("gurken fragment created for fullscreen")
|
|
//insetsController.hide(WindowInsetsCompat.Type.systemBars())
|
|
}
|
|
|
|
val view = inflater.inflate(R.layout.video_player_framgent, container, false)
|
|
val composeView = view.findViewById<ComposeView>(R.id.player_copose_view)
|
|
val frameView = view.findViewById<FrameLayout>(R.id.frame_layout)
|
|
|
|
viewModel.listener = object : VideoPlayerViewModel.Listener {
|
|
override fun requestUpdateLayoutRatio(ratio: Float) {
|
|
frameView.updateLayoutParams<ConstraintLayout.LayoutParams> {
|
|
dimensionRatio = "$ratio:1"
|
|
}
|
|
}
|
|
}
|
|
|
|
composeView.apply {
|
|
setViewCompositionStrategy(ViewCompositionStrategy.DisposeOnViewTreeLifecycleDestroyed)
|
|
setContent {
|
|
VideoPlayerTheme {
|
|
VideoPlayerUI(viewModel = viewModel)
|
|
}
|
|
}
|
|
}
|
|
|
|
viewModel.preparePlayer()
|
|
|
|
return view
|
|
}
|
|
} |