0

这是我第一次使用eclipse。运行包时,如果不对任何 xml 文件进行任何更改,则会收到以下错误:R 无法解析为变量。以下是我的源 java 文件:

import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;

public class StartingPoint extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_starting_point);
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.starting_point, menu);
        return true;        
    }
}

R.layout它在使用和的两行都给出错误R.menu。以下是我的布局的 xml 文件:

<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"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".StartingPoint" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world" />

</RelativeLayout>

和菜单 xml 文件:

<item
    android:id="@+id/action_settings"
    android:orderInCategory="100"
    android:showAsAction="never"
    android:title="@string/action_settings"/>

我已经尝试清理并重新启动,但没有任何效果,并且 xml 文件中没有错误。请让我知道如何解决此错误。谢谢你。

4

0 回答 0