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; //w ww .j a va2 s. com import android.app.Activity; import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; public class About extends Activity implements OnClickListener { @Override protected void onCreate( Bundle savedInstanceState ) { super.onCreate( savedInstanceState ); setContentView( R.layout.about ); Button btnOK = (Button) findViewById( R.id.OK ); if ( btnOK != null ) { btnOK.setOnClickListener( this ); } } @Override public void onClick( View v ) { finish(); } }