1 package de
.rmdir
.ms2debounce
;
3 import android
.app
.Activity
;
4 import android
.os
.Bundle
;
5 import android
.content
.Intent
;
7 public class MS2Debounce
extends Activity
9 /** Called when the activity is first created. */
11 public void onCreate(Bundle savedInstanceState
)
13 super.onCreate(savedInstanceState
);
15 Intent debouncesvc
= new Intent(this, DebounceService
.class);
16 startService(debouncesvc
);
18 setContentView(R
.layout
.main
);