我有 6 个按钮,我想将它们附加到同一个处理程序。我该怎么做?
在 main.axml 中将其添加到所有按钮
android:clickable="whateveryoulike"
并且所有按钮都需要有相同的 id
在 MainActivity 中
[Java.Interop.Export("whateveryoulike")] void whateveryoulike2(View v){ Button button=(Button) v; //your code here }
方法的名称并不重要