| Name | Link |
|---|---|
| Download Favoritos para importa no Google Chrome | https://gist.github.com/rodolfoizidoro/f0d5051d9109eb7dc70c2dfcf42a67aa |
| MVVM with Kotlin — Android Architecture Components, Dagger 2, Retrofit and RxAndroid | https://proandroiddev.com/mvvm-with-kotlin-android-architecture-components-dagger-2-retrofit-and-rxandroid-1a4ebb38c699 |
| 30 summertime Android libraries and tools which you don’t want to miss in 2018 | https://medium.com/@mmbialas/30-summertime-android-libraries-and-tools-which-you-dont-want-to-miss-in-2018-fab053d69503 |
| KeepSafe/TapTargetView An implementation of tap targets from the Material Design guidelines for feature discovery | https://github.com/KeepSafe/TapTargetView |
| Material Intro View is a showcase android library. | https://github.com/iammert/MaterialIntroView |
| Modern background execution in Android | https://android-developers.googleblog.com/2018/10/modern-background-execution-in-android.html?m=1 |
| Dominando o Data Binding no Android | https://pt.slideshare. |
This file contains hidden or 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
| class DeliveryWindowsAdapter : RecyclerView.Adapter<DeliveryWindowsAdapter.ViewHolder>() { | |
| var items: List<DeliveryWindowUiModel> by Delegates.observable(emptyList()) { _, oldList, newList -> | |
| autoNotify(oldList, newList) { o, n -> o.id == n.id } | |
| } | |
| override fun onBindViewHolder(holder: ViewHolder, position: Int) { | |
| val deliveryWindow = items[position] | |
| holder.title.text = deliveryWindow.title | |
| holder.price.text = deliveryWindow.friendlyPrice |
This file contains hidden or 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
| package br.socialcondo.app.profile | |
| import android.text.Editable | |
| import android.text.TextWatcher | |
| import android.widget.EditText | |
| import java.lang.ref.WeakReference | |
| /** | |
| * Created by kevin on 31/01/18. | |
| * Adapted from: |
This file contains hidden or 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
| package edu.self.binding; | |
| import android.databinding.BindingAdapter; | |
| import android.widget.ImageView; | |
| import com.bumptech.glide.Glide; | |
| public class CustomSetter { |