2016-03-07 19:22:56 -05:00
|
|
|
package eu.kanade.tachiyomi.widget
|
|
|
|
|
|
|
|
import android.content.Context
|
|
|
|
import android.graphics.Canvas
|
|
|
|
import android.graphics.Typeface
|
|
|
|
import android.util.AttributeSet
|
|
|
|
import android.widget.TextView
|
|
|
|
import eu.kanade.tachiyomi.R
|
2016-04-22 13:41:59 -04:00
|
|
|
import java.util.*
|
2016-03-07 19:22:56 -05:00
|
|
|
|
|
|
|
|
|
|
|
class PTSansTextView @JvmOverloads constructor(context: Context, attrs: AttributeSet? = null) :
|
|
|
|
TextView(context, attrs) {
|
|
|
|
|
|
|
|
companion object {
|
|
|
|
const val PTSANS_NARROW = 0
|
|
|
|
const val PTSANS_NARROW_BOLD = 1
|
2016-04-22 13:41:59 -04:00
|
|
|
|
|
|
|
// Map where typefaces are cached
|
|
|
|
private val typefaces = HashMap<Int, Typeface>(2)
|
2016-03-07 19:22:56 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
init {
|
|
|
|
if (attrs != null) {
|
|
|
|
val values = context.obtainStyledAttributes(attrs, R.styleable.PTSansTextView)
|
|
|
|
|
|
|
|
val typeface = values.getInt(R.styleable.PTSansTextView_typeface, 0)
|
|
|
|
|
2016-04-22 13:41:59 -04:00
|
|
|
setTypeface(typefaces.getOrPut(typeface) {
|
|
|
|
Typeface.createFromAsset(context.assets, when (typeface) {
|
|
|
|
PTSANS_NARROW -> "fonts/PTSans-Narrow.ttf"
|
|
|
|
PTSANS_NARROW_BOLD -> "fonts/PTSans-NarrowBold.ttf"
|
|
|
|
else -> throw IllegalArgumentException("Font not found " + typeface)
|
|
|
|
})
|
|
|
|
})
|
2016-03-07 19:22:56 -05:00
|
|
|
|
|
|
|
values.recycle()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
override fun draw(canvas: Canvas) {
|
|
|
|
// Draw two times for a more visible shadow around the text
|
|
|
|
super.draw(canvas)
|
|
|
|
super.draw(canvas)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|