“无法解决或不是一个领域请”为什么?

时间:2014-02-21 07:17:34

标签: java android

我有这个

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

将图片插入我的游戏,并在R.java

中插入
public static final int game_fon=0x7f02000b;

但背景为game_fon的{​​{1}}。

2 个答案:

答案 0 :(得分:1)

尝试检查班级的导入。有时Eclipse会从android包中导入R类并停止使用你的类。删除import android.R

等导入

答案 1 :(得分:0)

确保game_fon.png位于“project_root/res/drawable/game_fon.png”。并再次清理并重新构建您的项目。您也可以尝试重新启动Eclipse。