Back to project page SpareDeck.
The source code is released under:
MIT License
If you think the Android project SpareDeck listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.hacsoft.sparedeck.pokedex; /*from w ww . j a va2s .c o m*/ import android.app.Activity; import android.os.Bundle; import com.hacsoft.sparedeck.R; public class PokedexActivity extends Activity { @Override protected void onCreate( Bundle savedInstanceState ) { super.onCreate( savedInstanceState ); setContentView( R.layout.pokedex_main ); } }