avast / android-butterknife-zelezny

Android Studio plug-in for generating ButterKnife injections from selected layout XML.
Apache License 2.0
3.38k stars 412 forks source link

Unwanted behaviour in DialogFragment #44

Open kassim opened 9 years ago

kassim commented 9 years ago

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 in causes the fragment to crash upon load (because the view won't be provided, as it's attached to the Dialog object and not the fragment.

Any way of turning off the automatic onCreateView creation?

davidvavra commented 9 years ago

Right now we support mainly Activities and Fragments. It would be good to add support for DialogFragment. We will accept a pull request.