我最近一直试图让 R.JAVA 生成无济于事。我尝试了以下 1. 在清单文件中添加空格 2. Project--> Clean
所以我最后的猜测是我的 xml 文件中有一些我/eclipse 无法看到的错误。所以我希望有第二双眼睛可以检查我的 xml 文件以供审查。只有三个,它们应该是非常基本的(我正在关注 Android 书籍的介绍)。
清单文件
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.activites"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="15" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name=".MainActivity"
android:label="@string/title_activity_main" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".Activity2"
android:label="Activity 2" >
<intent-filter>
<action android:name="com.example.ACTIVITY2" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>
</manifest>
activity_main.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" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="@string/hello_world"
tools:context=".MainActivity" />
</RelativeLayout>
活动2.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" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="This is Activity 2!" />
</RelativeLayout>
再次感谢所有从忙碌的白天/夜晚抽出时间来帮助像我这样的初学者的人。此外,如果除了 xml 中的错误之外还有任何建议,请随时提出。
按照这里的要求,问题出现在 windows-> 显示视图 -> 问题中
- R 无法解析为变量
- R 无法解析为变量
- R 无法解析为变量
标记不是那么明显,它用于在 catlog 中显示调试信息,代码如下。
public class MainActivity extends Activity {
字符串标签 = "事件";
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.activity_main);
Log.d(tag, "In the onCreate() event");
}