2022-06-07 19:22:10 +05:30
|
|
|
package com.github.libretube.preferences
|
|
|
|
|
|
|
|
import android.content.Intent
|
|
|
|
import android.net.Uri
|
|
|
|
import android.os.Build
|
|
|
|
import android.os.Bundle
|
|
|
|
import android.text.Html
|
|
|
|
import android.view.LayoutInflater
|
|
|
|
import android.view.View
|
|
|
|
import android.view.ViewGroup
|
|
|
|
import android.widget.TextView
|
|
|
|
import androidx.fragment.app.Fragment
|
|
|
|
import com.github.libretube.BuildConfig
|
|
|
|
import com.github.libretube.R
|
|
|
|
import com.github.libretube.util.checkUpdate
|
|
|
|
import com.google.android.material.card.MaterialCardView
|
|
|
|
import com.google.android.material.dialog.MaterialAlertDialogBuilder
|
|
|
|
|
|
|
|
class AboutFragment : Fragment() {
|
|
|
|
override fun onCreateView(
|
|
|
|
inflater: LayoutInflater,
|
|
|
|
container: ViewGroup?,
|
|
|
|
savedInstanceState: Bundle?
|
|
|
|
): View? {
|
|
|
|
return inflater.inflate(R.layout.fragment_about, container, false)
|
|
|
|
}
|
|
|
|
|
|
|
|
override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
|
|
|
|
super.onViewCreated(view, savedInstanceState)
|
2022-06-08 00:52:35 +05:30
|
|
|
val topBarText = activity?.findViewById<TextView>(R.id.topBar_textView)
|
|
|
|
topBarText?.text = getString(R.string.about)
|
|
|
|
|
2022-06-07 19:22:10 +05:30
|
|
|
val appVersion = view?.findViewById<TextView>(R.id.app_version)
|
|
|
|
appVersion.text = BuildConfig.VERSION_NAME
|
2022-06-08 14:37:47 +05:30
|
|
|
|
2022-06-07 19:22:10 +05:30
|
|
|
val website = view?.findViewById<MaterialCardView>(R.id.website)
|
|
|
|
website?.setOnClickListener {
|
|
|
|
openLink("https://libre-tube.github.io/")
|
|
|
|
}
|
|
|
|
val donate = view?.findViewById<MaterialCardView>(R.id.donate)
|
|
|
|
donate?.setOnClickListener {
|
|
|
|
openLink("https://libre-tube.github.io/#donate")
|
|
|
|
}
|
|
|
|
val contributing = view?.findViewById<MaterialCardView>(R.id.contributing)
|
|
|
|
contributing?.setOnClickListener {
|
|
|
|
openLink("https://github.com/libre-tube/LibreTube")
|
|
|
|
}
|
|
|
|
val license = view.findViewById<MaterialCardView>(R.id.license)
|
|
|
|
license?.setOnClickListener {
|
|
|
|
val licenseString = view?.context?.assets!!
|
|
|
|
.open("gpl3.html").bufferedReader().use {
|
|
|
|
it.readText()
|
|
|
|
}
|
|
|
|
val licenseHtml = if (Build.VERSION.SDK_INT >= 24) Html.fromHtml(licenseString, 1)
|
|
|
|
else Html.fromHtml(licenseString)
|
|
|
|
|
|
|
|
MaterialAlertDialogBuilder(view?.context!!)
|
|
|
|
.setPositiveButton(getString(R.string.okay)) { _, _ -> }
|
|
|
|
.setMessage(licenseHtml)
|
|
|
|
.create()
|
|
|
|
.show()
|
|
|
|
true
|
|
|
|
}
|
|
|
|
val update = view.findViewById<MaterialCardView>(R.id.update)
|
|
|
|
update?.setOnClickListener {
|
|
|
|
checkUpdate(childFragmentManager)
|
|
|
|
}
|
|
|
|
}
|
2022-06-07 19:29:02 +05:30
|
|
|
|
2022-06-07 19:22:10 +05:30
|
|
|
private fun openLink(link: String) {
|
|
|
|
val uri = Uri.parse(link)
|
|
|
|
val intent = Intent(Intent.ACTION_VIEW).setData(uri)
|
|
|
|
startActivity(intent)
|
|
|
|
}
|
|
|
|
}
|