在 xml 定义的活动中找不到 onClick 方法
Posted
技术标签:
【中文标题】在 xml 定义的活动中找不到 onClick 方法【英文标题】:Cannot find onClick method in activity from xml definition 【发布时间】:2018-07-14 13:53:12 【问题描述】:我正在尝试将函数链接到 androidStudio 中按钮的 onClick 属性,但由于某种原因系统无法识别我编写的方法。
有趣的是,当我用 Java 编写代码时,它可以正常工作。在 Kotlin 中则不然。我更新了我的 Kotlin 并检查了它的配置,但我找不到问题。我的朋友尝试了我在 Linux 计算机上做的同样的事情,并且对他有用。我有一个 Mac OS,我不知道是否有一些额外的配置需要处理。谁能帮帮我?
这是我的简单活动:
import android.support.v7.app.AppCompatActivity
import android.os.Bundle
import android.view.View
class MainActivity : AppCompatActivity()
override fun onCreate(savedInstanceState: Bundle?)
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
fun sendMessage(view: View)
这是xml:
<Button
android:id="@+id/button"
android:layout_
android:layout_
android:layout_marginEnd="16dp"
android:layout_marginStart="16dp"
android:layout_marginTop="16dp"
android:onClick="sendMessage"
android:text="@string/send_button"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/editText"
app:layout_constraintTop_toTopOf="parent" />
在 build.gradle 我有:
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
错误信息:
Corresponding method handler 'public void sendMessage(android.view.View)' not found
The onClick attribute value should be the name of a method in this View's context to invoke when the view is clicked.
This name must correspond to a public method that takes exactly one parameter of type View. Must be a string value, using '\;' to escape characters such as '\n' or '\uxxxx' for a unicode character
【问题讨论】:
我们有很多办法。请检查kotlinlang.org/docs/tutorials/android-frameworks.html 能否请您复制并粘贴实际的错误文本? 它就在那里。有趣的是,错误消息抱怨“public void sendMessage(android.view.View)”是Java。但整个代码都在 Kotlin 中 尝试将 tools:context 添加到 xml 的根节点,看看是否有效?否则,您现在可以抑制 lint 错误并继续前进。 尝试使用 open fun sendMessage() 【参考方案1】:尝试添加
tools:context="com.somepackage.MainActivity"
到您在 xml 中的顶视图
【讨论】:
你确定它是正确的吗?因为没有它就会有警告 是的,我是。我认为在转换代码时与 Kotlin 和 Java 存在冲突。也许有一些错误配置。我重新启动了 AndroidStudio,现在它可以工作了。【参考方案2】:现在可以了。我不得不重新启动 AndroidStudio。我仍然无法使用设计选项卡中的属性窗口添加该功能,但如果我直接编辑 XML,它就可以工作。
【讨论】:
直接编辑xml是什么意思!我和你的问题有同样的问题,那么正确的答案或方法是什么? 据我记忆,我在 XML 中添加了 'android:onClick="sendMessage"' 并重新启动了 AndroidStudio。它在当时奏效了。很抱歉,我无法为您提供更多帮助,我已经有一段时间没有处理这个问题了。以上是关于在 xml 定义的活动中找不到 onClick 方法的主要内容,如果未能解决你的问题,请参考以下文章
Mongodb 在其 context.xml Spring 中找不到 bean 错误
Mongodb 在其 context.xml Spring 中找不到 bean 错误
在活动类 com.example.ivy.bienesraicesapp.PanelUsuarioActivity 中找不到方法(视图)
Android:如何在 ActivityManager.getRunningTasks 中找不到活动时将其移动到前面