mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-16 07:10:29 +05:30
114 lines
3.9 KiB
Kotlin
114 lines
3.9 KiB
Kotlin
|
package xyz.btcland.libretube
|
||
|
|
||
|
import android.os.Bundle
|
||
|
import androidx.fragment.app.Fragment
|
||
|
import android.view.LayoutInflater
|
||
|
import android.view.View
|
||
|
import android.view.ViewGroup
|
||
|
import android.widget.TextView
|
||
|
import androidx.constraintlayout.motion.widget.MotionLayout
|
||
|
import androidx.constraintlayout.widget.ConstraintSet
|
||
|
import kotlin.math.abs
|
||
|
|
||
|
// TODO: Rename parameter arguments, choose names that match
|
||
|
// the fragment initialization parameters, e.g. ARG_ITEM_NUMBER
|
||
|
private const val ARG_PARAM1 = "param1"
|
||
|
private const val ARG_PARAM2 = "param2"
|
||
|
|
||
|
/**
|
||
|
* A simple [Fragment] subclass.
|
||
|
* Use the [PlayerFragment.newInstance] factory method to
|
||
|
* create an instance of this fragment.
|
||
|
*/
|
||
|
class PlayerFragment : Fragment() {
|
||
|
// TODO: Rename and change types of parameters
|
||
|
private var videoId: String? = null
|
||
|
private var param2: String? = null
|
||
|
private var lastProgress: Float = 0.toFloat()
|
||
|
private var sId: Int=0
|
||
|
private var eId: Int=0
|
||
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||
|
super.onCreate(savedInstanceState)
|
||
|
arguments?.let {
|
||
|
videoId = it.getString("videoId")
|
||
|
param2 = it.getString(ARG_PARAM2)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
override fun onCreateView(
|
||
|
inflater: LayoutInflater, container: ViewGroup?,
|
||
|
savedInstanceState: Bundle?
|
||
|
): View? {
|
||
|
// Inflate the layout for this fragment
|
||
|
return inflater.inflate(R.layout.fragment_player, container, false)
|
||
|
}
|
||
|
|
||
|
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
|
||
|
super.onViewCreated(view, savedInstanceState)
|
||
|
val playerMotionLayout = view.findViewById<SingleViewTouchableMotionLayout>(R.id.playerMotionLayout)
|
||
|
|
||
|
view.findViewById<TextView>(R.id.textTest).text = videoId
|
||
|
playerMotionLayout.addTransitionListener(object: MotionLayout.TransitionListener {
|
||
|
override fun onTransitionStarted(
|
||
|
motionLayout: MotionLayout?,
|
||
|
startId: Int,
|
||
|
endId: Int
|
||
|
) {
|
||
|
|
||
|
}
|
||
|
|
||
|
override fun onTransitionChange(motionLayout: MotionLayout?, startId: Int, endId: Int, progress: Float) {
|
||
|
val mainActivity = activity as MainActivity
|
||
|
val mainMotionLayout = mainActivity.findViewById<MotionLayout>(R.id.mainMotionLayout)
|
||
|
mainMotionLayout.progress = abs(progress)
|
||
|
eId=endId
|
||
|
sId=startId
|
||
|
|
||
|
}
|
||
|
|
||
|
override fun onTransitionCompleted(motionLayout: MotionLayout?, currentId: Int) {
|
||
|
println(currentId)
|
||
|
val mainActivity = activity as MainActivity
|
||
|
val mainMotionLayout = mainActivity.findViewById<MotionLayout>(R.id.mainMotionLayout)
|
||
|
if (currentId==eId) {
|
||
|
mainMotionLayout.progress = 1.toFloat()
|
||
|
}else if(currentId==sId){
|
||
|
mainMotionLayout.progress = 0.toFloat()
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
override fun onTransitionTrigger(
|
||
|
motionLayout: MotionLayout?,
|
||
|
triggerId: Int,
|
||
|
positive: Boolean,
|
||
|
progress: Float
|
||
|
) {
|
||
|
|
||
|
|
||
|
}
|
||
|
})
|
||
|
playerMotionLayout.progress=1.toFloat()
|
||
|
playerMotionLayout.transitionToStart()
|
||
|
}
|
||
|
|
||
|
companion object {
|
||
|
/**
|
||
|
* Use this factory method to create a new instance of
|
||
|
* this fragment using the provided parameters.
|
||
|
*
|
||
|
* @param param1 Parameter 1.
|
||
|
* @param param2 Parameter 2.
|
||
|
* @return A new instance of fragment PlayerFragment.
|
||
|
*/
|
||
|
// TODO: Rename and change types and number of parameters
|
||
|
@JvmStatic
|
||
|
fun newInstance(param1: String, param2: String) =
|
||
|
PlayerFragment().apply {
|
||
|
arguments = Bundle().apply {
|
||
|
putString(ARG_PARAM1, param1)
|
||
|
putString(ARG_PARAM2, param2)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|