所以我想计算从创建活动到按下按钮的总时间。我可以用我当前的代码做到这一点,但它使用静态变量,我知道这是不好的编程习惯,我还有另一种方法可以做到这一点。
我当前的代码:
static long startTime=0;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_quick_touch);
// Show the Up button in the action bar.
setupActionBar();
startTime=System.currentTimeMillis();
}
public void onClick(View view)
{
long endTime = System.currentTimeMillis();
long time= endTime- startTime;
}