Easy Parcelable in Kotlin

https://medium.com/the-lazy-coders-journal/easy-parcelable-in-kotlin-the-lazy-coders-way-9683122f4c00 Parcelable: The lazy coder’s way @Parcelize class Item( var imageId: Int, var title: String, var details: String, var price: Double, var category: Category, var postedOn: Long ) : Parcelable See, easy as that! All you need is just to confirm READ MORE

Android Sunflower

https://github.com/googlesamples/android-sunflower https://developer.android.com/jetpack/docs/getting-started#take_advantage_of_jetpack A gardening app illustrating Android development best practices with Android Jetpack. Android Sunflower is currently released as an alpha and is under heavy development. To view the latest changes, please visit the Releases page. Note that some changes (such READ MORE

RxAndroid

https://code.tutsplus.com/tutorials/rxjava-for-android-apps-introducing-rxbinding-and-rxlifecycle–cms-28565 https://www.vokal.io/blog/reactive-forms-with-rxandroid https://gist.github.com/hzsweers/b9e25e244d59d7e3274b https://academy.realm.io/posts/donn-felker-reactive-android-ui-programming-with-rxbinding/ Adding TextWatcher on EditText using Rxjava and RxBinding https://placona.co.uk/building-a-beautifully-smart-form-in-android-using-rxjava/ https://academy.realm.io/posts/donn-felker-reactive-android-ui-programming-with-rxbinding/

getBoundsOnScreen(android.graphics.Rect)’ on a null object reference

getBoundsOnScreen(android.graphics.Rect)’ on a null object reference Set the hint on the TextInputLayout instead of the nested EditText. It wont crash. <android.support.design.widget.TextInputLayout android:id=”@+id/til1″ android:layout_width=”match_parent” android:layout_height=”wrap_content” android:hint=”Phone Number”> <EditText android:layout_width=”match_parent” android:layout_height=”wrap_content” android:id=”@+id/login_phone” android:inputType=”number” android:singleLine=”true” /> </android.support.design.widget.TextInputLayout> https://medium.com/@markchristopherng/a-new-year-a-new-os-upgrade-to-oreo-2f91783e159f Testing After doing the upgrade, READ MORE