2011-07-27 54 views
0

我想從Apress和Wiley的書籍中查看Android示例。 查看兩家公司的代碼時發生錯誤。 即。 A按年初的Android http://www.apress.com/downloadable/download/sample/sample_id/584/文件 - >新建 - > Android項目 - >從現有代碼AndroidManifest.xml創建項目(系統找不到指定的文件)

提取第七章至Z:\new\Chapter7

FYI Android SDK中的位置Z:\eclipse\Android\android-sdk

文件 - >新建 - > Android的項目 - >創建項目從選擇Z:\new\Chapter7 構建目標的Android 2.2

現有代碼

AM能夠獲取HelloWorld和鍵入的應用程序以使用當前的Eclipse設置在硬件和模擬器上運行,但是當試圖查看其他s orce代碼會出錯。

當從任一公司的書打開源代碼,我得到類似的錯誤

[2011-07-27 02:26:41 - com.android.ide.eclipse.adt.internal.project.AndroidManifestHelper] Unable to read Z:\eclipse\Android\android-sdk\samples\android-8\AndroidManifest.xml: java.io.FileNotFoundException: Z:\eclipse\Android\android-sdk\samples\android-8\AndroidManifest.xml (The system cannot find the file specified) 
[2011-07-27 02:26:41 - com.android.ide.eclipse.adt.internal.project.AndroidManifestHelper] Unable to read Z:\eclipse\Android\android-sdk\samples\android-8\AndroidManifest.xml: java.io.FileNotFoundException: Z:\eclipse\Android\android-sdk\samples\android-8\AndroidManifest.xml (The system cannot find the file specified) 
[2011-07-27 02:26:45 - com.android.ide.eclipse.adt.internal.project.AndroidManifestHelper] Unable to read Z:\new\AndroidManifest.xml: java.io.FileNotFoundException: Z:\new\AndroidManifest.xml (The system cannot find the file specified) 
[2011-07-27 02:30:41 - com.android.ide.eclipse.adt.internal.project.AndroidManifestHelper] Unable to read Z:\new\AndroidManifest.xml: java.io.FileNotFoundException: Z:\new\AndroidManifest.xml (The system cannot find the file specified) 

回答

0

Eclipse正在試圖創建從文件夾中Z:\new\Z:\eclipse\Android\android\samples\android-8,我可以向你保證是錯誤的項目。您有從另外兩個路徑創建的另一個項目嗎?我知道Z:\eclipse\Android\android\samples\android-8裏面有多個項目,您需要指定確切的項目。

例如,內部android-8,我看到有ApiDemosBackupRestore,你需要以選擇那些爲Eclipse找到的AndroidManifest.xml文件。

至於其他鏈接(Z:\new\),請確保你選擇了Z:\new\Chapter7,看起來你沒有這樣做。它應該在\new\Chapter7中尋找\new\文件夾中的AndroidManifest.xml

相關問題