About.java
Upload User: xmjingguan
Upload Date: 2009-07-06
Package Size: 2054k
Code Size: 1k
Category:

android

Development Platform:

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.sudoku;
  10. import android.app.Activity;
  11. import android.os.Bundle;
  12. public class About extends Activity {
  13.    @Override
  14.    protected void onCreate(Bundle savedInstanceState) {
  15.       super.onCreate(savedInstanceState);
  16.       setContentView(R.layout.about);
  17.    }
  18. }