/*
* Copyright (c) 2014. Marshal Chen.
*/
package com.marshalchen.common.demoofui.standUpTimer;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import com.marshalchen.common.demoofui.R;
public class Help extends Activity implements OnClickListener {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.stand_up_timer_help);
View okButton = findViewById(R.id.help_ok);
okButton.setOnClickListener(this);
}
public void onClick(View v) {
switch (v.getId()) {
case R.id.help_ok:
finish();
break;
}
}
}