Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Android 布局文件中有一个复选框。单击复选框时,我会在活动类中调用一个空函数。这会导致应用程序停止工作。为什么是这样?
我假设您在 XML 中使用“onclick”属性。
如果您收到 MethodNotFound 异常,它可能是以下两种情况之一:
您的 Activity 的方法名称或 XML 的方法名称有错字,或者...
您的方法在 Activity 中的可见性是不公开的。
在 XML 中指定 onclick 值时,该方法在您的活动中应如下所示:
public void myOnClickMethod(View v) { ... }