我真的需要帮助(我是ADT / Eclipse的新手),我通过将图像放在res / drawable文件夹中然后继续将它放在我的应用程序中来设置背景图像: android:background =“@ drawable / image” 然后我继续将布局更改为“scrollview” 图像出现在图形布局中,但过了一段时间,ADT向我显示错误说: (错误在于写入“R”的地方,例如setContentView(R.layout.activity_main); 错误显示“R无法解析为变量”
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}
如果有人帮忙,我会很感激:D