~@Dianne:

The preface:

I'm working on an Android Library Project that wants to use Fragments
and support older API levels, so we're using the Android Compatibility
Library.

I have a UI chunk which is a subclass of
android.support.v4.app.DialogFragment.  When running on devices with
SCREENLAYOUT_SIZE_NORMAL or SCREENLAYOUT_SIZE_SMALL our library
launches a new android.support.v4.app.FragmentActivity which displays
the DialogFragment in its embedded mode. All good so far.

The problem:

I also want to be able to display that DialogFragment in its dialog
mode when running on API 11+. (This is why we're using fragments.)
Since I'm working from within a library project, I do not have control
over the host activity's base class, so it may likely be extended from
Activity, not from FragmentActivity.

Is there a way to display my android.support.v4.app.DialogFragment on
API 11+ inside of a subclass of Activity, not FragmentActivity?

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to