2013-09-22 100 views
5

我使用Eclipse IDE,最近決定嘗試谷歌玩遊戲服務。林下面這個教程:typeanumber錯誤 - android.support.v4.app.fragment無法解析

https://developers.google.com/games/services/android/quickstart#before_you_begin

伊夫加入谷歌利用Android的SDK下載管理器,然後將文件夾複製到我的工作區發揮服務SDK。然後,我從現有的代碼中使用了file> import> android>項目。

在第三步中,我要求輸入typeanumber項目。但是,只要我導入它就有錯誤。

我做錯了什麼?

伊夫四處搜尋,但似乎沒有任何幫助

+0

有什麼錯誤? –

回答

0

我自己通過將google-play-lib庫和BaseGameUtil添加到Android構建路徑而不是java構建路徑來解決這個問題。也就是說,在項目屬性,在Android選項卡,添加庫

14

轉至項目屬性 - > Java Build Path - > Libraries - >添加外部JAR (在'extras'文件夾下選擇'Android' - > suppo rt - > v4 - > android-support-v4.jar) 添加該文件並構建項目以擺脫此錯誤

0

我也得到了該錯誤,但我使用了appCompat庫。你必須關閉appCompat項目然後清理你的項目,運行它直到失敗。然後打開appCompat項目,然後清理項目並運行它。

0

android.support.v4.app.fragment不能得到解決

乾草傢伙找到簡單的方法

1- import android.support.v4.app.Fragment;

2 - 這裏是代碼會好像。

if (view == findViewById(R.id.button)) 
{ 
    fragment = new FragmentOne(); 
    android.support.v4.app.FragmentManager fm =getSupportFragmentManager(); 
    android.support.v4.app.FragmentTransaction ft = fm.beginTransaction(); 
    android.support.v4.app.FragmentTransaction replace = ft.replace(R.id.fragment_place, fragment); 
    ft.commit(); 
} 

你只是補充而不是android.support.v4.app.getSupportFragmentManager();getFragmentManager();

它的工作好運氣。

相關問題