NewPipe-app-android/app/src/main/java/org/schabi/newpipe/fragments/BlankFragment.kt

25 lines
782 B
Kotlin

package org.schabi.newpipe.fragments
import android.os.Bundle
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import org.schabi.newpipe.BaseFragment
import org.schabi.newpipe.R
class BlankFragment() : BaseFragment() {
public override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?,
savedInstanceState: Bundle?): View? {
setTitle("NewPipe")
return inflater.inflate(R.layout.fragment_blank, container, false)
}
public override fun onResume() {
super.onResume()
setTitle("NewPipe")
// leave this inline. Will make it harder for copy cats.
// If you are a Copy cat FUCK YOU.
// I WILL FIND YOU, AND I WILL ...
}
}