Last active
April 2, 2024 20:51
-
-
Save adavis/8d666aa48dba524415b707296b1329ed to your computer and use it in GitHub Desktop.
Common Android Extensions in Kotlin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fun View.visible() { | |
visibility = View.VISIBLE | |
} | |
fun View.invisible() { | |
visibility = View.INVISIBLE | |
} | |
fun View.gone() { | |
visibility = View.GONE | |
} | |
fun Context.inflate(res: Int, parent: ViewGroup? = null) : View { | |
return LayoutInflater.from(this).inflate(res, parent, false) | |
} | |
inline fun Dialog.ifIsShowing(body: Dialog.() -> Unit) { | |
if (isShowing) { | |
body() | |
} | |
} | |
inline fun Snackbar.ifIsShowing(body: Snackbar.() -> Unit) { | |
if (isShown) { | |
body() | |
} | |
} | |
inline fun ViewGroup.forEach(action: (View) -> Unit) { | |
for (index in 0 until childCount) { | |
action(getChildAtIndex(index)) | |
} | |
} | |
operator fun ViewGroup.get(position: Int): View? = getChildAt(position) |
// Transform simple object to String with Gson
fun <reified T : Any> T.toPrettyJson() : String = Gson().toJson(this, T::class.java)
// Transform String Json to Object
inline fun <reified T : Any> String.fromPrettyJson() : T = Gson().fromJson(this , T::class.java)
// Transform String List Json to Object
inline fun <reified T : Any> String.fromPrettyJsonList() : MutableList <T> = when( this.isNotEmpty()){
true -> Gson().fromJson(this, object : TypeToken<MutableList<T>>() {}.type)
false -> mutableListOf()
}
I don't know if this is very common but it was very useful to me:
private enum class HashType {
MD5, SHA1, SHA256
}
fun String.applyMD5(): String = this.hashWithAlgorithm(HashType.MD5)
fun String.applySHA1(): String = this.hashWithAlgorithm(HashType.SHA1)
fun String.applySHA256(): String = this.hashWithAlgorithm(HashType.SHA256)
private fun String.hashWithAlgorithm(type: HashType): String {
return MessageDigest.getInstance(type.name)
.digest(this.toByteArray(Charsets.UTF_8))
.joinToString(separator = "") { String.format("%02x", it) }
}
For Preferences and
fun SharedPreferences.edit(func: SharedPreferences.Editor.() -> Unit) {
val editor = edit()
editor.func()
editor.apply()
}
For Context
/**
* Use this to dismiss keyboards, can always wrap if you needed something else after dismissing
*/
fun Context.dismissKeyboard(view: View?) {
view?.let{
val imm = getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager
imm.hideSoftInputFromWindow(it.getWindowToken(), 0)
}
}
For dp to px and vice-versa
val Int.dp: Int get() = (this / Resources.getSystem().displayMetrics.density).toInt()
val Int.px: Int get() = (this * Resources.getSystem().displayMetrics.density).toInt()
fun OkHttpClient.Builder.ignoreAllSSLErrors(): OkHttpClient.Builder {
val naiveTrustManager = object : X509TrustManager {
override fun getAcceptedIssuers(): Array<X509Certificate> = arrayOf()
override fun checkClientTrusted(certs: Array<X509Certificate>, authType: String) = Unit
override fun checkServerTrusted(certs: Array<X509Certificate>, authType: String) = Unit
}
val insecureSocketFactory = SSLContext.getInstance("TLSv1.2").apply {
val trustAllCerts = arrayOf<TrustManager>(naiveTrustManager)
init(null, trustAllCerts, SecureRandom())
}.socketFactory
sslSocketFactory(insecureSocketFactory, naiveTrustManager)
hostnameVerifier(HostnameVerifier { _, _ -> true })
return this
}
fun WebView.evol(script: String?, resultCallback: ValueCallback? = null) {
evaluateJavascript(script, resultCallback)
}
fun wrapQuote(value : String): String = "'$value'"
var View.isVisible: Boolean
get() = visibility == View.VISIBLE
set(value) {
val v = if (value) View.VISIBLE else View.GONE
if (visibility != v) {
visibility = v
}
}
// dp -> px
val Number.toPx
get() = TypedValue.applyDimension(
TypedValue.COMPLEX_UNIT_DIP,
this.toFloat(),
Resources.getSystem().displayMetrics
)
fun Any?.isNull() = this == null
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Adding more useful functions