OpenGL.java
上传用户:xmjingguan
上传日期:2009-07-06
资源大小:2054k
文件大小:1k
源码类别:

android开发

开发平台:

Java

  1. /***
  2.  * Excerpted from "Hello, Android!",
  3.  * published by The Pragmatic Bookshelf.
  4.  * Copyrights apply to this code. It may not be used to create training material, 
  5.  * courses, books, articles, and the like. Contact us if you are in doubt.
  6.  * We make no guarantees that this code is fit for any purpose. 
  7.  * Visit http://www.pragmaticprogrammer.com/titles/eband for more book information.
  8. ***/
  9. package org.example.opengl;
  10. import android.app.Activity;
  11. import android.os.Bundle;
  12. public class OpenGL extends Activity {
  13.    GLView view;
  14.    @Override
  15.    public void onCreate(Bundle savedInstanceState) {
  16.       super.onCreate(savedInstanceState);
  17.       view = new GLView(this);
  18.       setContentView(view);
  19.    }
  20.    @Override
  21.    protected void onPause() {
  22.        super.onPause();
  23.        view.onPause();
  24.    }
  25.    @Override
  26.    protected void onResume() {
  27.        super.onResume();
  28.        view.onResume();
  29.    }
  30. }