mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-14 14:20:30 +05:30
recognise shorts
This commit is contained in:
parent
695d1eb510
commit
5af53bba82
@ -3,15 +3,27 @@ package com.github.libretube.extensions
|
||||
import android.text.format.DateUtils
|
||||
import android.widget.TextView
|
||||
import com.github.libretube.R
|
||||
import com.github.libretube.util.ThemeHelper
|
||||
|
||||
fun TextView?.setFormattedDuration(duration: Long) {
|
||||
fun TextView.setFormattedDuration(duration: Long) {
|
||||
val text = if (duration < 0L) {
|
||||
this!!.setBackgroundColor(R.attr.colorPrimaryDark)
|
||||
this.setBackgroundColor(
|
||||
ThemeHelper.getThemeColor(
|
||||
context,
|
||||
R.attr.colorPrimaryDark
|
||||
)
|
||||
)
|
||||
this.context.getString(R.string.live)
|
||||
} else if (duration == 0L) {
|
||||
this!!.context.getString(R.string.yt_shorts)
|
||||
} else if (duration in 0L..60L) {
|
||||
this.setBackgroundColor(
|
||||
ThemeHelper.getThemeColor(
|
||||
context,
|
||||
R.attr.colorPrimaryDark
|
||||
)
|
||||
)
|
||||
this.context.getString(R.string.yt_shorts)
|
||||
} else {
|
||||
DateUtils.formatElapsedTime(duration)
|
||||
}
|
||||
this!!.text = text
|
||||
this.text = text
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user