81 lines
No EOL
3 KiB
Kotlin
81 lines
No EOL
3 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.testapp
|
|
|
|
import android.os.Bundle
|
|
import android.view.View
|
|
import android.widget.Button
|
|
import androidx.activity.enableEdgeToEdge
|
|
import androidx.activity.viewModels
|
|
import androidx.appcompat.app.AppCompatActivity
|
|
import androidx.core.view.ViewCompat
|
|
import androidx.core.view.WindowCompat
|
|
import androidx.core.view.WindowInsetsCompat
|
|
import androidx.core.view.WindowInsetsControllerCompat
|
|
import androidx.media3.common.MediaItem
|
|
import dagger.hilt.android.AndroidEntryPoint
|
|
import net.newpipe.newplayer.ActivityBrainSlug
|
|
import net.newpipe.newplayer.NewPlayer
|
|
import net.newpipe.newplayer.VideoPlayerView
|
|
import net.newpipe.newplayer.model.VideoPlayerViewModel
|
|
import net.newpipe.newplayer.model.VideoPlayerViewModelImpl
|
|
import net.newpipe.newplayer.ui.ContentScale
|
|
import javax.inject.Inject
|
|
|
|
@AndroidEntryPoint
|
|
class MainActivity : AppCompatActivity() {
|
|
|
|
val videoPlayerViewModel: VideoPlayerViewModel by viewModels<VideoPlayerViewModelImpl>()
|
|
|
|
@Inject
|
|
lateinit var newPlayer: NewPlayer
|
|
|
|
var activityBrainSlug: ActivityBrainSlug? = null
|
|
|
|
override fun onCreate(savedInstanceState: Bundle?) {
|
|
super.onCreate(savedInstanceState)
|
|
enableEdgeToEdge()
|
|
setContentView(R.layout.activity_main)
|
|
|
|
val embeddedPlayer = findViewById<VideoPlayerView>(R.id.new_player_video_view)
|
|
val startStreamButton = findViewById<Button>(R.id.start_stream_button)
|
|
val buttonsLayout = findViewById<View>(R.id.buttons_layout)
|
|
val embeddedPlayerLayout = findViewById<View>(R.id.player_column)
|
|
val fullscreenPlayer = findViewById<VideoPlayerView>(R.id.fullscreen_player)
|
|
|
|
startStreamButton.setOnClickListener {
|
|
newPlayer.playWhenReady = true
|
|
newPlayer.setStream(MediaItem.fromUri(getString(R.string.ccc_6502_video)))
|
|
}
|
|
|
|
videoPlayerViewModel.newPlayer = newPlayer
|
|
videoPlayerViewModel.contentFitMode = ContentScale.FIT_INSIDE
|
|
|
|
activityBrainSlug = ActivityBrainSlug(videoPlayerViewModel)
|
|
activityBrainSlug?.let {
|
|
it.embeddedPlayerView = embeddedPlayer
|
|
it.addViewToHideOnFullscreen(buttonsLayout)
|
|
it.addViewToHideOnFullscreen(embeddedPlayerLayout)
|
|
it.fullscreenPlayerView = fullscreenPlayer
|
|
it.rootView = findViewById(R.id.main)
|
|
}
|
|
}
|
|
} |