当前位置: 首页 > 知识库问答 >
问题:

android错误:找不到符号变量

吴胜
2023-03-14

我正在用Android Studio制作我的第一个测试程序。

该程序有两个活动,您在第一个活动中插入一个文本,按下一个按钮,然后文本在另一个活动上显示。

我下面的YT教程,但我发现两个错误:

找不到符号变量,也找不到解决方案。

我在这里搜索了这么久,但没有找到有效的答案。我试过:

>

  • 清洁项目和重建项目。

    我没有"导入Android。R".

    我用了导入myPackagename。r但它告诉我"未使用的导入语句"。

    我已经更改了ID名称,并删除了每个大写字母,因为我读了它会引起麻烦。

    我已经执行了Gradle同步(通过工具

    代码为:

    主要活动。爪哇:

        package pack1.p1;
    
        import android.support.v7.app.AppCompatActivity;
        import android.os.Bundle;
        import android.widget.Button;
        import android.widget.EditText;
    
        public class MainActivity extends AppCompatActivity 
        {
    
          @Override
          protected void onCreate(Bundle savedInstanceState)
          {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);
    
            Button boton1;
            EditText texto1;
    
            boton1=(Button)findViewById(R.layout.idboton1);
    
            texto1=(EditText)findViewById(R.layout.edittext1);
    
    
    
    
    
    
          }
        }
    

    activity_main.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:id="@+id/activity_main"
          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="pack1.p1.MainActivity">
    
        <TextView
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:text="PRIMERA VENTANA"
          android:id="@+id/textview1" />
    
        <EditText
          android:layout_width="match_parent"
          android:layout_height="wrap_content"
          android:inputType="textPersonName"
          android:text="Name"
          android:ems="10"
          android:layout_below="@+id/textview1"
          android:layout_alignParentLeft="true"
          android:layout_alignParentStart="true"
          android:layout_marginLeft="11dp"
          android:layout_marginStart="11dp"
          android:layout_marginTop="39dp"
          android:id="@+id/edittext1" />
    
        <Button
          android:text="Abrir ventana nueva"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_below="@+id/edittext1"
          android:layout_centerHorizontal="true"
          android:layout_marginTop="52dp"
          android:id="@+id/idboton1" />
    
        </RelativeLayout>
    

    活动2。xml:

    <?xml version="1.0" encoding="utf-8"?>
    
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:fitsSystemWindows="true"
      tools:context="pack1.p1.Main2Activity">
    
    <android.support.design.widget.AppBarLayout
       android:layout_width="match_parent"
       android:layout_height="wrap_content"
       android:theme="@style/AppTheme.AppBarOverlay">
    
       <android.support.v7.widget.Toolbar
         android:id="@+id/toolbar"
         android:layout_width="match_parent"
         android:layout_height="?attr/actionBarSize"
         android:background="?attr/colorPrimary"
         app:popupTheme="@style/AppTheme.PopupOverlay" />
    
    </android.support.design.widget.AppBarLayout>
    
    <include layout="@layout/content_main2" />
    
    <android.support.design.widget.FloatingActionButton
      android:id="@+id/fab"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_gravity="bottom|end"
      android:layout_margin="@dimen/fab_margin"
      app:srcCompat="@android:drawable/ic_dialog_email" />
    

    content_main2.xml:

    <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res     /android"
       xmlns:app="http://schemas.android.com/apk/res-auto"
       xmlns:tools="http://schemas.android.com/tools"
       android:id="@+id/content_main2"
       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"
       app:layout_behavior="@string/appbar_scrolling_view_behavior"
       tools:context="pack1.p1.Main2Activity"
       tools:showIn="@layout/activity_main2">
    
    </RelativeLayout>
    

    最后,是AndroidManifest。xml:

    <?xml version="1.0" encoding="utf-8"?>
    
    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
    
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name=".Main2Activity"
            android:label="@string/title_activity_main2"
            android:theme="@style/AppTheme.NoActionBar"></activity>
    </application>
    

    这就是我一直在寻找的地方:

    Android Studio: Gradle:错误:找不到符号变量

    Android Studio无法找到符号变量

    Android Gradle:找不到符号变量

  • 共有1个答案

    沈俊晤
    2023-03-14

    在主要活动中。javaR.id。idboton1而不是R.layout。idboton1。与edittext1相同

     类似资料:
    • 我遇到了一个奇怪的问题!我的xml文件中有每个布局的id名,并且在我的主要活动中创建了对它们的变量引用。java文件。 当我清理和重建我的项目时,我得到的是: “错误:找不到符号layoutMain=findViewById(r.id.layoutMain);” 我在用敏。SDK 21,目标29

    • 在项目中,我有几个风格,几个构建类型和几个文件夹 构建组合: 文件夹结构 在每个文件夹中,我都有自定义的来注册这个 有时,但只是有时生成失败,出现“找不到符号”错误: 或与类无关但错误相同 但是下一个构建可能会成功,所以可能的流程是 构建(成功) 代码中的一些更改 构建(错误) 生成重试(成功) 注意事项 这不是同步问题,同步/无效缓存不是答案 免责声明:有些问题看起来像这一个,但它们是不同的,例

    • 我试图构建一个开源反应原生项目示例: https://github.com/wix/react-native-wordpress-editor/tree/master/example 但是我运行后遇到了这个错误。/react-local run-android 有人知道发生了什么事吗?

    • 这里有一个类似的答案:如何在Java中将函数作为参数传递? 但提供的正确答案不起作用。我有一门课: 在函数内部我试图将传递到,但我得到的错误是: 找不到符号 符号:类Callable 我不知道为什么。 另外,我尝试使用返回类型字符串作为xMethod,您能传递一个返回类型不同的函数吗?

    • 大约两天前我安装了Android Studio,我还安装了最新版本的Java和JDK1.8(我认为是JavaSE8U101)。我能够编辑代码,我正在遵循Android Studio官方网站上的教程。(此处:https://developer.android.com/training/basics/firstapp/building-ui.html) 然而,在点击运行时,我得到了以下两个错误: >

    • 嗨,我试着把谷歌分析在我的应用程序,我看到留档,但不为我工作,我有这个错误错误:(51,9)错误:找不到符号变量mTracker: 分析pplication.java 显示: 主要活动 ... 错误:错误:(51,9)错误:找不到符号变量mTracker 修复:问题是我需要将其放入主活动: 公共类主活动扩展活动{