我有这个
background = new Background(BitmapFactory.decodeResource(getResources(), R.drawable.game_fon), ScreenWidth, this);
将图片插入我的游戏,并在R.java
public static final int game_fon=0x7f02000b;
但背景为game_fon
的{{1}}。
答案 0 :(得分:1)
尝试检查班级的导入。有时Eclipse会从android包中导入R类并停止使用你的类。删除import android.R
答案 1 :(得分:0)
确保game_fon.png位于“project_root/res/drawable/game_fon.png
”。并再次清理并重新构建您的项目。您也可以尝试重新启动Eclipse。