Back to project page Labs-HandHeld-Systems.
The source code is released under:
Apache License
If you think the Android project Labs-HandHeld-Systems 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 course.labs.dangerousapp; /* www.jav a 2s.c o m*/ import android.app.Activity; import android.os.Bundle; public class DangerousActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); } }