From an activity, I can easily setup the onActivityResult() and call startActivityForResult() and everything works fine.
Now, I need to call <
You can declare your Activity to have a Dialog theme. Look into this SO question: Android Activity as a dialog
You would change this in your AndroidManifest.xml file:
You should be able to use startActivityForResult() like normal. I know the BluetoothChat example Android program uses something similar to return the Bluetooth device that you choose from a Dialog list.