因此,我正在尝试测试将单击事件添加到我主要使用Button的 .axml 文件中的a 。Activity我经历了很多其他线程,并且尽我所能遵循提供的代码。但是,当我运行代码时出现以下异常。
Java.Lang.IllegalStateException: Could not find method testClick(View)
in a parent or ancestor Context for android:onClick attribute
defined on view class android.widget.Button with id 'login'
在 Main.axml
<Button
android:text="Login"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="2"
android:onClick="testClick"
android:id="@+id/login" />
在 Main.cs
public class Main : Activity
{
protected override void OnCreate(Android.OS.Bundle savedInstanceState)
{
base.OnCreate(savedInstanceState);
SetContentView(Resource.Layout.Main);
}
public void testClick(View view)
{
//Show alert saying clicked...
}
}
我是否缺少一些配置,或者包括让它工作?
牛魔王的故事
暮色呼如
相关分类