Back to project page Operation-Valkyrie.
The source code is released under:
Terms and conditions Preamble: This Agreement, signed on Jun 10, 2012 [hereinafter: Effective Date] governs the relationship between the Enduser, a private person, (hereinafter: Licensee) and Paul N...
If you think the Android project Operation-Valkyrie 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 valkyrie.ui.gallery; //from w w w. j av a 2 s .c o m import valkyrie.main.R; import android.app.Activity; import android.os.Bundle; /** * Just a new Activity which sets the about layout and display it. * * */ public class AboutActivity extends Activity { /** * Just start the Actitvity with the specific layout * * @param Bundle savedInstanceState */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.about); } }