2010-11-05 427 views
0

我已經下載了一個名爲「AndExplorer」的文件管理器應用程序,它位於我的Android模擬器中。 我的目標是在我當前的自定義應用程序中調用此應用程序。你們有沒有辦法做到這一點?在Android應用程序中調用應用程序的API

+0

你必須看看在那個特定的文檔應用程序 – Falmarri 2010-11-05 20:19:11

回答

2

嗯,這取決於,你可以使用意圖,如果AndExplorer允許,這樣的事情:

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 
    } 
} 

編輯:快速谷歌,http://www.lysesoft.com/products/andexplorer/#faq

+0

非常感謝。它像魔術一樣工作。 – Sammm 2010-11-07 23:01:12

+0

順便問一下,你知道是否有任何Android的默認文件管理器API?我試圖實現一個瀏覽按鈕,用戶可以選擇一個文件,完整的文件路徑將返回到我的應用程序。如果我需要完全依賴AndExplorer應用程序,如果我想實現此功能,那就太愚蠢了。 – Sammm 2010-11-07 23:03:12

相關問題