Skip to content

Instantly share code, notes, and snippets.

@ahulyk
ahulyk / NumberTextWatcher.kt
Last active February 22, 2019 13:12
Format number in android EditText after editing
package com.toastme.widget
import android.text.Editable
import android.text.TextWatcher
import android.widget.EditText
import java.math.BigDecimal
import java.text.DecimalFormat
class NumberTextWatcher(private val editText: EditText) : TextWatcher {
@ahulyk
ahulyk / AppComponen.kt
Last active August 19, 2020 11:41
Glide 4 inject custom OkHttp client using Dagger 2
@Singleton
@Component(
modules = [
NetModule::class,
AndroidInjectionModule::class,
GlideBuilderModule::class
]
)
interface AppComponent : AndroidInjector<App> {