Reputation: 531
I have downloaded a file manager application called "AndExplorer" inside my Android emulator. My goal is to call this application inside my current custom application. Do you know any way to do this?
Upvotes: 0
Views: 581
Reputation: 5642
Well, it depends, you could use Intents if AndExplorer allows, something like this:
public Button.OnClickListener mExplore = new Button.OnClickListener() {
public void onClick(View v) {
Intent intent = new Intent("com.path.to.ANDEXPLORER");
startActivityForResult(intent, 0);
}
};
public void onActivityResult(int possibleCode, int possibleOption, Intent intent) {
//Process the data
}
}
Edit: A quick Google, http://www.lysesoft.com/products/andexplorer/#faq
Upvotes: 2