Commit 15bfd31f by chengxiuhong

test main

parent 535c961a
......@@ -767,4 +767,28 @@ public class EyeTestActivity extends BaseActivity {
break;
}
}
@Override
protected void onPause() {
super.onPause();
if (BDttsUtils.getInstance()!=null){
BDttsUtils.getInstance().pause();
}
}
@Override
protected void onResume() {
super.onResume();
if (BDttsUtils.getInstance()!=null){
BDttsUtils.getInstance().resume();
}
}
@Override
public void finish() {
super.finish();
if (BDttsUtils.getInstance()!=null){
BDttsUtils.getInstance().stop();
}
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment