Back to project page AsciiCamera.
The source code is released under:
Apache License
If you think the Android project AsciiCamera listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
// Copyright (C) 2014 Bruno Ramalhete // w ww.ja v a2s .c o m package com.spectralsoftware.asciicamera; import android.app.Activity; import android.content.Context; import android.content.Intent; import android.os.Bundle; import android.view.Window; import com.spectralsoftware.asciicamera.R; public class AboutActivity extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); requestWindowFeature(Window.FEATURE_NO_TITLE); setContentView(R.layout.about); } // sets FLAG_ACTIVITY_NO_HISTORY so exiting and relaunching won't go back to help screen public static Intent startIntent(Context parent) { Intent aboutIntent = new Intent(parent, AboutActivity.class); aboutIntent.addFlags(Intent.FLAG_ACTIVITY_NO_HISTORY); parent.startActivity(aboutIntent); return aboutIntent; } }