Java

Java code posted by Jurabele
created at 12 Feb 14:44

Edit | Back
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package androidservice.jurabele.com;

import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import androidservice.jurabele.com.MyService;


public class MainActivity extends Activity implements OnClickListener {

  Button button1, button2;
  
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    
    button1 = (Button) findViewById(R.id.button1);
      button2 = (Button) findViewById(R.id.button2);

      button1.setOnClickListener(this);
      button2.setOnClickListener(this);
      
      startService(new Intent(this, MyService.class));
  }

  @Override
  public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.activity_main, menu);
    return true;
  }

  @Override
  public void onClick(View v) {
    switch (v.getId())
    {
      case R.id.button1:
        startService(new Intent(this, MyService.class));
        break;
        
      case R.id.button2:
        stopService(new Intent(this, MyService.class));
    }
    
  }

}
1.26 KB in 2 ms with coderay