Move page indicator to bottom center, and use a shadow instead of a background. Other category in catalogue list is now placed at the end

This commit is contained in:
inorichi
2017-11-18 14:09:28 +01:00
parent c437a33f2a
commit 88d1f29fe2
6 changed files with 38 additions and 14 deletions

View File

@@ -38,10 +38,10 @@ class PTSansTextView @JvmOverloads constructor(context: Context, attrs: Attribut
}
}
override fun draw(canvas: Canvas) {
override fun onDraw(canvas: Canvas) {
// Draw two times for a more visible shadow around the text
super.draw(canvas)
super.draw(canvas)
super.onDraw(canvas)
super.onDraw(canvas)
}
}