zoukankan      html  css  js  c++  java
  • android 按钮点击测试

     
    package test2.com;
    
    import android.app.Activity;
    import android.os.Bundle;
    import android.view.View;
    import android.view.View.OnClickListener;
    import android.widget.*;
    
    public class Test2Activity extends Activity {
        /** Called when the activity is first created. */
    	//置于一个全局的TextView,
    	public TextView tv;
        @Override
        public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.main);
            
            
            Button start = (Button)findViewById(R.id.button1);
            Button finish = (Button)findViewById(R.id.button2);
            //把界面中的textView赋给tv
            tv =  (TextView)findViewById(R.id.textView2);
            TextView tv1 = (TextView)findViewById(R.id.textView2);
            
            start.setOnClickListener(new OnClickListener(){
    
    			public void onClick(View v) {
    				// TODO Auto-generated method stub
    				//此时的tv是全局的,
    				tv.setText("start");
    				//tv1 在onCreate中产生的,所以下面的语句会抱错!!
    				//------------------//
    				//tv1.setText("inner Text");
    				//-------------------//
    				
    			}
            	
            });
            
            //
            finish.setOnClickListener(new View.OnClickListener() {
    			
    			public void onClick(View v) {
    				// TODO Auto-generated method stub
    				tv.setText("finish");
    			}
    		});
            
            
            
        }
        
      
        
    }
    

    以上程序主代码

    在res/main.xml中加一个textview,2个button,分别设置text为start,stop
     
     

      点击start,stop分别显示start,stop  ,~~~~~~~


     

  • 相关阅读:
    Collection(集合)知识点总结
    【Mysql 学习】mysql 的使用复习
    解决Address localhost:1099 is already in use
    mysql8.0中dcl语句修改密码的语法
    mysql+sqlyog 多表查询练习
    MySQL 8.0 Public Key Retrieval is not allowed 错误的解决方法
    JDBC连接Mysql 8.0.12版本的几个注意事项
    JSTL学习
    64-多个参数个数
    63-参数的使用
  • 原文地址:https://www.cnblogs.com/flex_fly/p/2196421.html
Copyright © 2011-2022 走看看