Back to project page CamTimer.
The source code is released under:
GNU General Public License
If you think the Android project CamTimer 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.dozingcatsoftware.cameratimer; //from ww w. ja v a 2s . c o m import android.app.Activity; import android.content.Context; import android.content.Intent; import android.os.Bundle; import android.view.Window; import com.dozingcatsoftware.cameratimer.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; } }