I am using android compatibility library (v4 revision 8). In the custom DialogFragment the overrided method onViewCreated is not getting called.For eg.
publi
The documentation states that onCreateDialog will be called before onCreateView (DialogFragment documentation) and onCreateView will be called before onActivityCreated (Fragment documentation. Therefore this would be the flow of calls:
onCreate
onCreateDialog
onCreateView
onActivityCreated
So do what you would do in OnViewCreated in onActivityCreated and you should be set.