作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试使用 Kotlin 在 Android Studio (AS) 4.1 中创建一个新项目。我使用“空事件”并创建项目“MyTest”。
AS 使用未命名的 TextView“Hello World”创建 activity_main.xml。我给 id 命名为 myText。
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
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"
tools:context=".MainActivity">
<TextView
android:id="@+id/myText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
创建的 MainActivity.kt 是标准的,看起来像这样
package com.example.mytest
import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
}
}
这一切都是正常的,但是
最佳答案
你需要在你的项目中集成 Kotlin Android Extensions 才能让你的 View 像这样被识别。只需在您的 build.gradle
中添加以下行:
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
本文中的更多信息:
https://antonioleiva.com/kotlin-android-extensions/
关于android-studio - Android Studio 4.1 Kotlin 小部件 ID 在 AminActivity.kt 中无法识别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64517022/
我尝试使用 Kotlin 在 Android Studio (AS) 4.1 中创建一个新项目。我使用“空事件”并创建项目“MyTest”。 AS 使用未命名的 TextView“Hello Worl
我是一名优秀的程序员,十分优秀!