add top ten to home screen & minor fixes

* use plural for runtime and episodes
* code clean up
This commit is contained in:
2021-01-21 18:22:53 +01:00
parent c6874d0e54
commit 4c5d6e6e24
11 changed files with 101 additions and 39 deletions

View File

@ -0,0 +1,7 @@
package org.mosad.teapod.util
import android.widget.TextView
fun TextView.setDrawableTop(drawable: Int) {
this.setCompoundDrawablesWithIntrinsicBounds(0, drawable, 0, 0)
}