gpt4 book ai didi

java - Android Studio (1.5.1) -- 错误 : cannot find symbol class/App won't run

转载 作者:行者123 更新时间:2023-12-01 21:50:45 25 4
gpt4 key购买 nike

我正在开发我的第一个 Android 应用程序。这是一个非常简单的华氏度/摄氏度转换器,我所有的 ID、方法和按钮/文本字段都被完美复制出来。我检查了三遍。 (我按照教授发布的视频中的说明进行操作。)但是,我在尝试让 Android Studio 运行该应用程序时遇到困难。

我发现了很多与此类似的问题,其中许多问题都建议同步 gradle 文件。所以我做了。我仍然收到这些相同的错误消息:

enter image description here

<小时/>

这是应用程序信息:

enter image description here

来自 app/res/layout/content_test.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: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="john.testapplication.TestActivity"
tools:showIn="@layout/activity_test">

<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="numberDecimal"
android:ems="10"
android:id="@+id/temperatureEditText"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:hint="Enter Temperature" />

<RadioGroup
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/temperatureEditText"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:id="@+id/radioGroup">

<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="From Celsius to Farenheit"
android:id="@+id/toFarenheitRadioButton"
android:checked="false" />

<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="From Farenheit to Celsius"
android:id="@+id/toCelsiusRadioButton"
android:checked="false" />
</RadioGroup>

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Convert"
android:id="@+id/convertButton"
android:layout_below="@+id/radioGroup"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:onClick="convert" />
</RelativeLayout>

来自 app/res/layout/activitytest.xml 的代码:(我以为我使用的是相对布局,我不知道这是否与我的问题有关)

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout 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:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context="john.testapplication.TestActivity">

<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_test" />

<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"
android:src="@android:drawable/ic_dialog_email" />

</android.support.design.widget.CoordinatorLayout>

同样,我是根据老师给我的视频构建这个应用程序的,所以我愿意打赌它与我的 Android Studio 版本或计算机上的设置有关,而不是代码本身。

最佳答案

好的,在本网站某人的帮助下,我找到了解决方案。显然在 TestActivity.xml 中,我忘记导入这些:

import android.widget.EditText;
import android.widget.RadioButton;

修复了所有问题。我以为它已经全部进口了。感谢 Eugen Pechanec 提供的有用提示。

关于java - Android Studio (1.5.1) -- 错误 : cannot find symbol class/App won't run,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35267529/

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