Android为多个视图使用一个方法

时间:2014-03-29 22:27:18

标签: java android methods

例如,我的应用程序中有多个计时器。我目前复制并粘贴相同的方法并更改所有代码中的视图3.有没有办法在计时码表中使用一种方法,只是将视图作为参数传递?

这是我目前的代码。

如何添加视图参数?

  

public void startClickterm1(View view){

if(chronorunt1 == false){
    chronot1.setBase(SystemClock.elapsedRealtime());
    chronot1.start();
    chronorunt1 = true;
    Vibrator vib = (Vibrator)getSystemService(Context.VIBRATOR_SERVICE);
    vib.vibrate(100);}


else

{



        }}
     

public void stopClickterm1(View view){

        chronot1.stop();    // stop chronometer here
        chronot1.setBase(SystemClock.elapsedRealtime());
        chronorunt1 = false;
     

}

1 个答案:

答案 0 :(得分:1)

您刚刚说过:在方法中添加View类型的参数。