Skip to content

Instantly share code, notes, and snippets.

@a-v-ebrahimi
Created February 2, 2012 12:00
Show Gist options
  • Save a-v-ebrahimi/1723166 to your computer and use it in GitHub Desktop.
Save a-v-ebrahimi/1723166 to your computer and use it in GitHub Desktop.
android activity class
import android.app.Activity;
import android.os.Bundle;
public class actSpecial extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.layout_);
registerEvents();
}
private void registerEvents() {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment