kassim

Results 12 issues of kassim

I've already got a working fork of the lib here (the structure may need a little clearing up) https://github.com/kassim/EasyImage/commit/b50e8de641c01a24da6d52bed53ad0b330e183e4 (you can test with `api 'com.github.kassim:EasyImage:9481fc1'` in your own project) so...

It would be really great if I'd be able to observe permission changes, not just the response to the request. Is this possible somehow?

So your code in `TraceurException` is ``` public Throwable appendTo(Throwable throwable) { Throwable t = throwable; while (t.getCause() != null) { t = t.getCause(); // Won't be able to init...

I've created a serializer `@NavTypeSerializer class BitmapTypeSerializer : DestinationsNavTypeSerializer` (I know its probably inefficient to serialise a bitmap between screens but that's a different point) I also have my composable...

enhancement

``` public interface OnMenuItemSelectionListener { void onMenuItemSelect(@IdRes int var1, int var2, boolean var3); void onMenuItemReselect(@IdRes int var1, int var2, boolean var3); } ``` is kinda hard to use without digging...

this PR enables the setting of different paddings for start/top/end/bottom

When running this in a DialogFragment - where we would be providing the layout in `onCreateDialog` it and calling `Butterknife.inject(this,dialog)` the plugin persistently creates an `onCreateView` override which if left...

It would be good to have the possibility to use the MessageFormat pattern, as used by GWT i18n Messages (e.g. "The disk \"{1}\" contains {0} file(s)."), as to be able...

It seems as though we're only able to provide one dependency of each type, would it perhaps be possible to provide them as named dependencies so we can provide multiple...

enhancement

**Point 1** Kotterknife behaves in a way that if `DialogFragment.getDialog() != null`, it will use `getDialog().findViewById()` or if a `getDialog() == null` it will attempt `getView().findViewById()` The FragmentManager calls `getLayoutInflater`...