mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-11 21:12:49 +01:00
9f78c8f6b4
- Moved category to ui - Reworked Animation (smoother) - Updated TextDrawable
15 lines
532 B
Kotlin
15 lines
532 B
Kotlin
package eu.kanade.tachiyomi.util
|
|
|
|
import android.support.annotation.LayoutRes
|
|
import android.view.LayoutInflater
|
|
import android.view.View
|
|
import android.view.ViewGroup
|
|
|
|
/**
|
|
* Extension method to inflate a view directly from its parent.
|
|
* @param layout the layout to inflate.
|
|
* @param attachToRoot whether to attach the view to the root or not. Defaults to false.
|
|
*/
|
|
fun ViewGroup.inflate(@LayoutRes layout: Int, attachToRoot: Boolean = false): View {
|
|
return LayoutInflater.from(context).inflate(layout, this, attachToRoot)
|
|
} |