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 安装了单声道。我试图创建一个按钮,一旦点击就会显示吐司。但是,C# 似乎没有实现功能。
你如何在 C# 中定义它?
public class helloworld extends Activity implements OnclickListener{ }
您使用与扩展类相同的语法来实现接口:
public class helloworld : Activity, OnclickListener { }
请务必在您正在实现的接口之前列出您继承的类。