0

这是我第一次为安卓开发。我正在尝试在eclipse环境中开发,但我遇到了问题。没有生成类 R.java。我已经尝试过功能清理或刷新->清理等所有方法,然后重新安装 Eclipse。也许问题可能出在我的布局中:

我的布局:

<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=".MainActivity" >

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

</RelativeLayout>
4

1 回答 1

0

我想你的意思是它没有被再生?这个问题在 Eclipse 中经常出现。只需删除现有的 R.java,它就会正确地重新生成。

或者你的意思是你根本没有 R.java?

于 2013-03-21T18:19:29.410 回答