Back to project page 101AndroidApps.
The source code is released under:
Licenced under the Creative Commons Attribution 4.0 licence. For full text see http://creativecommons.org/licenses/by/4.0/
If you think the Android project 101AndroidApps 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.hulzenga.ioi.android.app_001; //from ww w . j ava2s. c om import android.os.Bundle; import com.hulzenga.ioi.android.AppActivity; import com.hulzenga.ioi.android.R; public class HelloWorldActivity extends AppActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.app_001_activity_hello_world); } }