Android下按钮的使用方法

    1. package com.hangsheng.button;
    2. import android.app.Activity;
    3. import android.os.Bundle;
    4. import android.view.View;
    5. import android.widget.Button;
    6. public class Ex07_WidgetButtonActivity extends Activity {
    7. /** Called when the activity is first created. */
    8. @Override
    9. public void onCreate(Bundle savedInstanceState) {
    10. super.onCreate(savedInstanceState);
    11. setContentView(R.layout.main);   //关联布局模板文件main.xml
    12. find_and_modify_button();        //调用成员函数find_and_modity_button
    13. }
    14. private void find_and_modify_button(){
    15. Button button =(Button)findViewById(R.id.button);        //通过资源内ID为button的资源来实例化button对象
    16. button.setOnClickListener(button_listener);              //设置对象button的监听器
    17. };
    18. private Button.OnClickListener button_listener =new Button.OnClickListener(){  //成员按钮监听对象
    19. @Override
    20. public void onClick(View v) {                                             //按钮事件
    21. // TODO Auto-generated method stub
    22. setTitle("button被点击了一下");
    23. }
    24. };
    25. }

布局模板文件main.xml:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. android:orientation="vertical" >
  6. <TextView
  7. android:layout_width="fill_parent"
  8. android:layout_height="wrap_content"
  9. android:text="@string/hello" />
  10. <Button
  11. android:id="@+id/button"
  12. android:layout_width="wrap_content"
  13. android:layout_height="wrap_content"
  14. android:text="这是Button" />
  15. </LinearLayout>
上一篇:Socket网络编程--简单Web服务器(6)


下一篇:c#winform自定义窗体,重绘标题栏,自定义控件学习