Back to project page mtgtools.
The source code is released under:
GNU General Public License
If you think the Android project mtgtools 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 pe.apiconz.apps.mtgtools; /*w ww. ja v a2s . co m*/ import android.app.Activity; import android.os.Bundle; import android.view.Menu; import android.view.MenuInflater; import android.view.MenuItem; public class AboutMeActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { setContentView(R.layout.aboutme); super.onCreate(savedInstanceState); getActionBar().setDisplayHomeAsUpEnabled(true); } }