Skip to content

Instantly share code, notes, and snippets.

@agneym
Created January 27, 2016 06:17
Show Gist options
  • Save agneym/a960bc57e34f4417fec3 to your computer and use it in GitHub Desktop.
Save agneym/a960bc57e34f4417fec3 to your computer and use it in GitHub Desktop.
Main Activity for Hello World Project - Android
package agney.alpha.com.helloworld;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment