when I run a simple code I get an error: "The file name must end with .xml"
when I run a simple code I get an error: "The file name must end with .xml"
我刚开始使用 Android Studio 4.1.3 学习 Kotlin。
当我试图在新的 Test.kt 文件上 运行 一个非常简单的代码(只打印一个词)时,我得到了这个错误:
我在网上搜索过,但我无法弄清楚这个错误的来源是什么。
谢谢
您不能将 kotlin 文件放在 app/src/main/res/*
目录中。它需要进入 app/src/main/java/*
@Peyman 因为你刚刚开始,所以我将干脆地 运行 介绍如何构建应用程序。转到文件 -> 新建项目 -> 清空 Activity -> 填写表格并单击完成。您将自动导航到 Activity。然后你会看到你的项目结构如下:
app ->
src ->
main ->
java -> // this is where you will create hello.kt file. just click on the folder, create a package inside the package create .kt file -> like class Hello: Fragment (or AppCompatActivity) {... other stuff}
res -> // this is where you will create UI files such as hello.xml
我刚开始使用 Android Studio 4.1.3 学习 Kotlin。
当我试图在新的 Test.kt 文件上 运行 一个非常简单的代码(只打印一个词)时,我得到了这个错误:
我在网上搜索过,但我无法弄清楚这个错误的来源是什么。 谢谢
您不能将 kotlin 文件放在 app/src/main/res/*
目录中。它需要进入 app/src/main/java/*
@Peyman 因为你刚刚开始,所以我将干脆地 运行 介绍如何构建应用程序。转到文件 -> 新建项目 -> 清空 Activity -> 填写表格并单击完成。您将自动导航到 Activity。然后你会看到你的项目结构如下:
app ->
src ->
main ->
java -> // this is where you will create hello.kt file. just click on the folder, create a package inside the package create .kt file -> like class Hello: Fragment (or AppCompatActivity) {... other stuff}
res -> // this is where you will create UI files such as hello.xml