例如,我的应用程序中有多个计时器。我目前复制并粘贴相同的方法并更改所有代码中的视图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;
}
答案 0 :(得分:1)
您刚刚说过:在方法中添加View
类型的参数。