◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。
添加 android 按钮单击事件
问题描述:
你提供了 android 应用源代码的链接,但在其中一个片段 xml 文件中添加了一个按钮,但单击事件出错。你需要帮助添加一个单击事件,以便在单击按钮时弹出 "hello world" 对话框。
解决方案:
提供的源码文件已经不存在,因此无法根据提供的上下文提供确切的指导。但是,以下是添加 android 按钮单击事件的通用步骤:
示例代码:
布局 xml 文件:
<button android:id="@+id/my_button" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="click me" android:onclick="onclickbutton" />
活动或者片段类:
public class MyActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.my_layout); Button myButton = (Button) findViewById(R.id.my_button); myButton.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { Toast.makeText(MyActivity.this, "Hello World", Toast.LENGTH_SHORT).show(); } }); } }
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。