新しいAndroid SDKをダウンロードしてインストールしました。それを試運転するための簡単なアプリケーションを作成したかったのです。
ウィザードはこのコードを作成しました:
package eu.mauriziopz.gps;
import android.app.Activity;
import android.os.Bundle;
public class ggps extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
}
しかしEclipseは私にエラーを与えます
Rは解決できません
オンライン
setContentView(R.layout.main);
どうして?
PS:私は名前のXMLファイル持っているmain.xml
の下にres/layout/
。