2016-05-13 09:45:36 -04:00
|
|
|
package eu.kanade.tachiyomi.widget
|
|
|
|
|
|
|
|
import android.content.Context
|
|
|
|
import android.util.AttributeSet
|
|
|
|
import android.view.View
|
|
|
|
import android.widget.RelativeLayout
|
|
|
|
import eu.kanade.tachiyomi.R
|
|
|
|
import eu.kanade.tachiyomi.util.getResourceColor
|
|
|
|
import eu.kanade.tachiyomi.util.setVectorCompat
|
|
|
|
import kotlinx.android.synthetic.main.view_empty.view.*
|
|
|
|
|
|
|
|
class EmptyView @JvmOverloads constructor(context: Context, attrs: AttributeSet? = null) :
|
|
|
|
RelativeLayout (context, attrs) {
|
|
|
|
|
|
|
|
init {
|
|
|
|
inflate(context, R.layout.view_empty, this)
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Hide the information view
|
|
|
|
*/
|
|
|
|
fun hide() {
|
|
|
|
this.visibility = View.GONE
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show the information view
|
|
|
|
* @param drawable icon of information view
|
|
|
|
* @param textResource text of information view
|
|
|
|
*/
|
|
|
|
fun show(drawable: Int, textResource: Int) {
|
2017-01-08 12:50:51 -05:00
|
|
|
image_view.setVectorCompat(drawable, context.getResourceColor(android.R.attr.textColorHint))
|
2016-05-13 09:45:36 -04:00
|
|
|
text_label.text = context.getString(textResource)
|
|
|
|
this.visibility = View.VISIBLE
|
|
|
|
}
|
|
|
|
}
|