我在Android模拟器中下载了一个名为“AndExplorer”的文件管理器应用程序。 我的目标是在我当前的自定义应用程序中调用此应用程序。你们知道怎么办?
答案 0 :(得分:2)
嗯,这取决于,如果AndExplorer允许,你可以使用Intents,如下所示:
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
}
}
修改:快速Google,http://www.lysesoft.com/products/andexplorer/#faq