新建-> android Activity ),但在 R 文件中出现错误,它无法识别 Activity 创建的布局。我使用 Ubuntu 13.10(-6ren">
gpt4 book ai didi

java - 为什么当我创建一个新 Activity 时, "setContentView"无法识别我的布局?

转载 作者:太空狗 更新时间:2023-10-29 15:53:27 25 4
gpt4 key购买 nike

我刚刚创建了一个新 Activity (项目-> 新建-> android Activity ),但在 R 文件中出现错误,它无法识别 Activity 创建的布局。我使用 Ubuntu 13.10(64 位)

public class OrderKaraokeActivity extends SherlockActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_order_karaoke);
}
}

activity_order_karaoke:

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

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

</RelativeLayout>

enter image description here

控制台:

Description Resource    Path    Location    Type
activity_order_karaoke cannot be resolved or is not a field OrderKaraokeActivity.java /src/com/example/adicionalesprueba line 18 Java Problem

导入:

enter image description here

控制台问题:

enter image description here

最佳答案

删除以下内容

import com.twable.R;
import com.twable.R.layout;
import com.twable.R.menu;

并包含import com.example.adicionalesprueba.R

----

检查你的包资源管理器(eclipse 的左面板),打开你项目的 gen 文件夹,打开你项目的包,你应该看到一个 R.java 文件。如果你不这样做,你的 R 文件没有被生成。尝试清理您的项目,Project --> Clean。如果文件仍然不存在,那么你的 R 文件没有被构建。发生这种情况的原因有很多。一个非常常见的问题是您的某个 XML 文件的结构不正确

enter image description here

关于java - 为什么当我创建一个新 Activity 时, "setContentView"无法识别我的布局?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22080851/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com