Android Studio无法找到符号变量

时间:2016-08-14 01:02:00

标签: java android android-studio

我在两天前安装了Android Studio,我还安装了最新版本的Java和JDK 1.8(我认为它是Java SE 8u101)。我能够编辑代码,我正在关注官方Android Studio网站上的教程。 (这里:https://developer.android.com/training/basics/firstapp/building-ui.html

但是,在点击运行时,我遇到了以下两个错误:

  1. 错误:(24,57)错误:找不到符号变量activity_display_message

      

    此代码:

         
        

    ViewGroup layout =(ViewGroup)findViewById(R.id。 activity_display_message );

      
  2. 错误:(33,25)错误:找不到符号变量EXTRA_MESSAGE

      

    此代码:

         
        

    intent.putExtra(EXTRA_MESSAGE,message);

      
  3. 我可能做错了什么?弹出模拟器,我可以通过手机访问其他应用程序,但我无法加载我的应用程序。我应该安装Java SE 8u102吗?

    我还收到第二条错误消息:

      

    错误:任务':app:compileDebugJavaWithJavac'的执行失败。 >编译失败;有关详细信息,请参阅编译器错误输出。

    感谢任何帮助。

    下面是我的第一个xml文件的代码,“activity_main.xml”:

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
        <EditText android:id="@+id/edit_message"
            android:layout_weight="1"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:hint="@string/edit_message" />
        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/button_send"
            android:onClick="sendMessage" />
    </LinearLayout>
    

    以下是我的“activity_display_message.xml”代码

    <?xml version="1.0" encoding="utf-8"?>
    <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="com.example.appno1.DisplayMessageActivity">
    
    </RelativeLayout>
    

3 个答案:

答案 0 :(得分:4)

将此添加到您的MainActivity:

public final static String EXTRA_MESSAGE = "com.example.myfirstapp.MESSAGE";

You might have missed this line, 可以在“构建意图”部分找到。

来自原始页面的

Refer this for more,

答案 1 :(得分:0)

我的建议是,尝试清理项目并再次构建它。如果要访问新添加的资源,则需要构建项目。清理将有助于从项目和建筑中删除所有以前自动生成的资源,这将有助于再次创建它们+新的。

答案 2 :(得分:0)

关于此错误,

  

ViewGroup layout =(ViewGroup)findViewById(R.id.activity_display_message);

检查文件res&gt;布局&gt; activity_display_message.xml作为指定为android的id:id =“@ + id / activity_display_message”