So I\'ve created a DialogFragment that is shown as a dialog via this technique
Now that it\'s launched and upon a user interaction within this popup I want to slide in a
there actualy is a container as you can see in the onCreateView method. You use the container to create your view.
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle icicle) {
Log.d(TAG, "onCreateView");
View v = inflater
.inflate(R.layout.move_folder_dialog, container, false);
It seems like the FragmentManager is not able to get the container.
Could this be a bug?