amincss / openintents

Automatically exported from code.google.com/p/openintents
0 stars 0 forks source link

Button doesn't show on first run #308

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Install oi file man (DONT START IT)
2. Start oi file man using an intent

What is the expected output? What do you see instead?
if oi file man isnt installed I lanuch the market and afterwards I launch oi 
file man... but the button isnt showing. (the one used to choose files or 
folders)

What version of the product are you using? On what operating system?
Latest from market, android 2.2

Below is the python code I use. it can be executed through sl4a:

def launch_oi_file_man(title, button):
        res = droid.startActivityForResult("org.openintents.action.PICK_DIRECTORY",
                                        None,
                                        None,
                                        {
                                                "org.openintents.extra.TITLE" : title,
                                                "org.openintents.extra.BUTTON_TEXT" : button
                                        })
        return res

Feel free to contact me for more info.

Original issue reported on code.google.com by sebastia...@gmail.com on 9 Jan 2011 at 4:22

GoogleCodeExporter commented 9 years ago
The new DistributionLibrary which is used by all applications handles this 
scenario properly. Intents will be passed correctly, even with "EULA" or 
"Recent changes" activities showing up.

Original comment by peli0...@googlemail.com on 30 Jan 2011 at 2:05