Skip to content

Instantly share code, notes, and snippets.

@mitchtabian
Last active March 29, 2023 06:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mitchtabian/21ad373586ace0aa82439b6bf00e19cc to your computer and use it in GitHub Desktop.
Save mitchtabian/21ad373586ace0aa82439b6bf00e19cc to your computer and use it in GitHub Desktop.
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
startService();
}
private void startMyService(){
Intent serviceIntent = new Intent(this, MyService.class);
startService(serviceIntent);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment