Back to project page MentalMathX.
The source code is released under:
GNU General Public License
If you think the Android project MentalMathX 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 net.schlingel.bplaced.mentalmathx; /* w ww.j a va 2s. co m*/ import android.content.Context; import android.content.Intent; import android.support.v7.app.ActionBarActivity; import org.androidannotations.annotations.EActivity; /** * Created by zombie on 01.09.14. */ @EActivity(R.layout.activity_about) public class AboutActivity extends ActionBarActivity { public static Intent asIntent(Context sender) { Intent i = new Intent(sender, AboutActivity_.class); return i; } @Override public void onBackPressed() { super.onBackPressed(); finish(); } }