Skip to content
View hleinone's full-sized avatar

Organizations

@AndroidAalto @javanto

Block or report hleinone

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Android EditText TextWatcher for for... Android EditText TextWatcher for formatting credit card number made with Kotlin
    1
    class CreditCardNumberFormattingTextWatcher : TextWatcher {
    2
        private var current = ""
    3
    
                  
    4
        override fun onTextChanged(s: CharSequence, start: Int, before: Int, count: Int) {
    5
        }
  2. Android AlertDialog Rx extension Android AlertDialog Rx extension
    1
    import android.content.DialogInterface
    2
    import androidx.appcompat.app.AlertDialog
    3
    import com.jakewharton.rxbinding2.view.clicks
    4
    import io.reactivex.Maybe
    5
    import io.reactivex.Single
  3. Android SharedPreferences Rx extension Android SharedPreferences Rx extension
    1
    import android.content.SharedPreferences
    2
    import io.reactivex.Maybe
    3
    import io.reactivex.Single
    4
    
                  
    5
    @androidx.annotation.CheckResult
  4. Android SocketIO Rx extension Android SocketIO Rx extension
    1
    import io.reactivex.Observable
    2
    import io.reactivex.Single
    3
    import io.reactivex.disposables.Disposables
    4
    import io.socket.client.IO
    5
    import io.socket.client.Socket
  5. Google Maps SDK for Android Rx exten... Google Maps SDK for Android Rx extension
    1
    import android.content.Context
    2
    import com.google.android.gms.maps.GoogleMap
    3
    import com.google.android.gms.maps.SupportMapFragment
    4
    import io.reactivex.Observable
    5
    import io.reactivex.Single
  6. Density pixel calculation helper Density pixel calculation helper
    1
    import android.content.res.Resources
    2
    import android.util.TypedValue
    3
    
                  
    4
    object OneDp {
    5
        fun init(resources: Resources) {