Jack Cheung
Jack Cheung
In reference to `insertInternal(newList, currentList)` method: https://github.com/cymcsg/UltimateRecyclerView/blob/master/UltimateRecyclerView/ultimaterecyclerview/src/main/java/com/marshalchen/ultimaterecyclerview/UltimateViewAdapter.java#L399 Ever consider do use `DiffUtil` in the support library? Reference: https://developer.android.com/reference/android/support/v7/util/DiffUtil.html
For example, translation of "Item doesn't exist" would be: ``` xml Item doesn't exist ``` where it is expected to be: ``` xml Item doesn\'t exist ``` See: https://developer.android.com/guide/topics/resources/string-resource.html#FormattingAndStyling
Just wonder if there is any roadmap to support Google Sign-On / LDAP, or is there an alternative way to achieve that? Thanks.
* tap `Start` * tap `Run` * type in `command.com` and hit `Enter`
I've spotted lifecycle behavioral differences for NavigationFragment 1.0.0 vs 2.0.2-alpha On Fragments inherited NavigationFragment with 1.0.0 version, presenting another fragment will result in first fragment calling `onPause()` and `onStop()` Whereas...