rename PlayerFragment to VideoPlayerFragment
This commit is contained in:
parent
29f6d9e960
commit
66b49e225a
|
@ -27,24 +27,20 @@ import android.view.ViewGroup
|
|||
import android.widget.FrameLayout
|
||||
import androidx.compose.ui.platform.ComposeView
|
||||
import androidx.compose.ui.platform.ViewCompositionStrategy
|
||||
import androidx.compose.ui.unit.dp
|
||||
import androidx.constraintlayout.widget.ConstraintLayout
|
||||
import androidx.core.view.WindowCompat
|
||||
import androidx.core.view.WindowInsetsCompat
|
||||
import androidx.core.view.WindowInsetsControllerCompat
|
||||
import androidx.core.view.updateLayoutParams
|
||||
import androidx.fragment.app.Fragment
|
||||
import androidx.fragment.app.viewModels
|
||||
import androidx.hilt.navigation.compose.hiltViewModel
|
||||
import dagger.hilt.android.AndroidEntryPoint
|
||||
import net.newpipe.newplayer.model.VideoPlayerViewModel
|
||||
import net.newpipe.newplayer.model.VideoPlayerViewModelImpl
|
||||
import net.newpipe.newplayer.ui.VideoPlayerControllerUI
|
||||
import net.newpipe.newplayer.ui.VideoPlayerUI
|
||||
import net.newpipe.newplayer.ui.theme.VideoPlayerTheme
|
||||
|
||||
@AndroidEntryPoint
|
||||
class PlayerFragment() : Fragment() {
|
||||
class VideoPlayerFragment() : Fragment() {
|
||||
|
||||
private val viewModel: VideoPlayerViewModel by viewModels<VideoPlayerViewModelImpl>()
|
||||
|
||||
|
@ -64,7 +60,7 @@ class PlayerFragment() : Fragment() {
|
|||
//insetsController.hide(WindowInsetsCompat.Type.systemBars())
|
||||
}
|
||||
|
||||
val view = inflater.inflate(R.layout.player_framgent, container, false)
|
||||
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)
|
||||
|
|
@ -28,6 +28,7 @@
|
|||
android:id="@+id/frame_layout"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintDimensionRatio="H,2:1">
|
||||
|
||||
<androidx.compose.ui.platform.ComposeView
|
Loading…
Reference in New Issue