Davide Donadello
Davide Donadello
Read these documents, you should fix it http://developer.android.com/training/displaying-bitmaps/load-bitmap.html http://developer.android.com/training/camera/photobasics.html
I had the same error after updating support libraries to version 27.1.0
@elitelokesh seems to be caused by `onCreateGhostHeaderViewHolder` in [SectioningAdapter.java](https://github.com/ShamylZakariya/StickyHeaders/blob/b498b9d4006aac60bae7a2db487f7435ac2be371/stickyheaders/src/main/java/org/zakariya/stickyheaders/SectioningAdapter.java#L268) and related to [this pull request](https://github.com/ShamylZakariya/StickyHeaders/pull/70). The `parent.addView()` method used here attach the view to the parent, so the problem aren't...
After a year seeing that my workaround still helps makes me happy! 🎉
@mweiczorek I used this code to add alpha to a custom color: `.setMaskColour((ContextCompat.getColor(this, R.color.accent_color) & 0x00FFFFFF) | 0xdd000000)`
@tikamsingh you can change the type of selection with `setType()` method and set / reset hours and minutes with `.hours` and `.minutes` property of the picker
I have the same issue. If i initialize ESTimePicker into viewLoad() of a view controller instead of from storyboard it works without problems
@solarisis There is a simple workaround if you want to use it into storyboard: * Add view with custom class set to ESTimePicker * Into relative controller viewDidLoad() method call...