2017-02-04 19:07:06 +01:00
|
|
|
@file:Suppress("NOTHING_TO_INLINE")
|
|
|
|
|
2016-03-19 15:39:19 +01:00
|
|
|
package eu.kanade.tachiyomi.util
|
|
|
|
|
2016-04-10 00:59:12 +02:00
|
|
|
import android.graphics.Color
|
2016-03-19 15:39:19 +01:00
|
|
|
import android.graphics.Point
|
2016-04-10 00:59:12 +02:00
|
|
|
import android.support.design.widget.Snackbar
|
2016-03-19 15:39:19 +01:00
|
|
|
import android.view.View
|
2016-04-10 00:59:12 +02:00
|
|
|
import android.widget.TextView
|
2016-03-19 15:39:19 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns coordinates of view.
|
|
|
|
* Used for animation
|
|
|
|
*
|
|
|
|
* @return coordinates of view
|
|
|
|
*/
|
2016-04-10 00:59:12 +02:00
|
|
|
fun View.getCoordinates() = Point((left + right) / 2, (top + bottom) / 2)
|
2016-03-19 15:39:19 +01:00
|
|
|
|
2016-04-10 00:59:12 +02:00
|
|
|
/**
|
|
|
|
* Shows a snackbar in this view.
|
|
|
|
*
|
|
|
|
* @param message the message to show.
|
|
|
|
* @param length the duration of the snack.
|
|
|
|
* @param f a function to execute in the snack, allowing for example to define a custom action.
|
|
|
|
*/
|
2017-01-08 18:12:19 +01:00
|
|
|
inline fun View.snack(message: String, length: Int = Snackbar.LENGTH_LONG, f: Snackbar.() -> Unit): Snackbar {
|
2016-04-10 00:59:12 +02:00
|
|
|
val snack = Snackbar.make(this, message, length)
|
|
|
|
val textView = snack.view.findViewById(android.support.design.R.id.snackbar_text) as TextView
|
|
|
|
textView.setTextColor(Color.WHITE)
|
|
|
|
snack.f()
|
|
|
|
snack.show()
|
2017-01-08 18:12:19 +01:00
|
|
|
return snack
|
2017-02-04 19:07:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
inline fun View.visible() {
|
|
|
|
visibility = View.VISIBLE
|
|
|
|
}
|
|
|
|
|
|
|
|
inline fun View.invisible() {
|
|
|
|
visibility = View.INVISIBLE
|
|
|
|
}
|
|
|
|
|
|
|
|
inline fun View.gone() {
|
|
|
|
visibility = View.GONE
|
|
|
|
}
|