Re-direct - but straight to the point. appreciate it.

i copied this code from android docs to display a DialogFragment

        FragmentTransaction transaction = 
fragmentManager.beginTransaction();

            
transaction.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_OPEN);

            // To make it fullscreen, use the 'content' root view as the 
container
            // for the fragment, which is always the root view for the 
activity
            //
            transaction.add(android.R.id.content, 
inputDialog).addToBackStack(null).commit();

but it does not display it.

do i need to do a .show() after the transaction.add()


-- 
-- 
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
--- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to