Examples of fragment dialogs look like this SomeActivity { public void buttonClicked(View someView) { DialogFragment newFragment = new DatePickerFragment(); newFragment.show(getFragmentManager(), "timePicker"); } public static class DatePickerFragment extends DialogFragment(){ .... }; }
If you have a compound control extending a layout like a linear layout how do you isolate this to the view? how do you get a "fragmentManager" from the bowels of a view? or do you pass that to the view explicitly? Thank you very much for your help Satya -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en