Back to project page qComicViewer.
The source code is released under:
Copyright (C) 2013 Nicholas Quirk Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Sof...
If you think the Android project qComicViewer 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.nicholasquirk.comicviewer; /*from w w w. ja v a 2 s . co m*/ import android.app.Activity; import android.os.Bundle; /** * * @author Nicholas Quirk * */ public class About extends Activity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.about); } }