Skip to content

Instantly share code, notes, and snippets.

View OwloneDev's full-sized avatar
💭
🦉 O̠͎̳̻͇͗̑̚w̢͍͂ͣ̎̃̌̾̒̊̀l̄̇͒ͤ̌oͣͭͩͨ̇͢҉͓͔̗̻ṋ̳ͣ̍͆͛͋ͤ̈́e͒̚ ̅ͧ̎͊ͯ̊̈͋̀D̋ͧeͧͮv.̣ͧ͌͛͂ͮ̓🦉

Owlone Dev. OwloneDev

💭
🦉 O̠͎̳̻͇͗̑̚w̢͍͂ͣ̎̃̌̾̒̊̀l̄̇͒ͤ̌oͣͭͩͨ̇͢҉͓͔̗̻ṋ̳ͣ̍͆͛͋ͤ̈́e͒̚ ̅ͧ̎͊ͯ̊̈͋̀D̋ͧeͧͮv.̣ͧ͌͛͂ͮ̓🦉
View GitHub Profile
@OwloneDev
OwloneDev / code
Last active August 18, 2020 19:04
Convert String to Boolean
fun String.toBoolean() = this == "true"
private fun imageScaling(imageResource: Int): BitmapDrawable {
val options = BitmapFactory.Options()
options.inScaled = false
val bitmap = BitmapFactory.decodeResource(context.resources, imageResource, options)
val bitmapDrawable = BitmapDrawable(context.resources, bitmap)
bitmapDrawable.isFilterBitmap = false
return bitmapDrawable
}