Skip to content

Instantly share code, notes, and snippets.

@yakutozcan
Created September 29, 2015 12:28
Show Gist options
  • Save yakutozcan/e6013513de5a0bd348a1 to your computer and use it in GitHub Desktop.
Save yakutozcan/e6013513de5a0bd348a1 to your computer and use it in GitHub Desktop.
ServiceClickMainActivity
package com.example.haydut.serviceclick;
//yakutozcan.blogspot.com
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
public class MainActivity extends Activity
{
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//Servisi başlattık
startService(new Intent(this, ClickServis.class));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment