2014-02-21 64 views
0

我有這個「不能解決或不是一個領域請」爲什麼?

background = new Background(BitmapFactory.decodeResource(getResources(), R.drawable.game_fon), ScreenWidth, this); 

插入我的比賽的圖像,這在R.java

public static final int game_fon=0x7f02000b; 

game_fon爲背景Cannot be resolved or is not a field

+1

如果你在R.java中有這個,你應該使用'R.game_fon',不是嗎? –

+0

叫做背景的_fon是什麼? – Bex

+0

您需要將圖片複製到項目的res/drawable文件夾中。然後刷新投影儀。 –

回答

1

嘗試檢查您的班級的進口。有時Eclipse從android包中導入R類並停止使用你的類。刪除進口,如import android.R

0

確保game_fon.png位於「project_root/res/drawable/game_fon.png」。並重新清理並重新構建您的項目。您也可以嘗試重新啓動Eclipse。

相關問題