在我的 android 应用程序中,我创建了一个简单的应用程序,在 eclipse 中通过文件>项目>Androiapp我已经放下了简单的活动,但应用程序给出了错误。
布局文件
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="@string/hello_world" />
</RelativeLayout>
代码文件
package com.example.testapp;
import android.R;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
public class MainActivity extends Activity {
@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.activity_main, menu);
return true;
}
}
正如我所看到的,这段代码没有错误,但在 eclipse 中它仍然在setContentView(R.layout.activity_main);
and处产生错误getMenuInflater().inflate(R.menu.activity_main, menu);
。
我认为资源文件没有加载
请注意,我没有对自动生成的代码进行任何更改。