FileDocCategorySizeDatePackage
GLPerfActivity.javaAPI DocAndroid 5.1 API1347Thu Mar 12 22:22:48 GMT 2015com.android.glperf

GLPerfActivity

public class GLPerfActivity extends android.app.Activity

Fields Summary
GLPerfView
mView
Constructors Summary
Methods Summary
protected voidonCreate(android.os.Bundle icicle)

        super.onCreate(icicle);
	getWindow().setFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON, WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
        mView = new GLPerfView(getApplication());
	setContentView(mView);
    
protected voidonPause()

        super.onPause();
        mView.onPause();
    
protected voidonResume()

        super.onResume();
        mView.onResume();