Mainactivity:
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
public void clickBtn(View view)
{
int id=view.getId();
if(id==R.id.btn1)
{
//启动服务时可以使用显式和隐式Intent 但是推荐的是隐式Intent
//使用隐式Intent有助于降低组件之间的耦合度 解耦 提高系统的灵活度
// Intent intent=new Intent(this,MyTestService.class);
Intent intent=new Intent();
intent.putExtra("mp3name", "test.mp3");
intent.setAction("android.intent.action.MyTestService");
startService(intent);
}else if(id==R.id.btn2)
{
//停止服务
// Intent intent=new Intent(this,MyTestService.class);
Intent intent=new Intent();
intent.setAction("android.intent.action.MyTestService");
stopService(intent);
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}
Service:
@TargetApi(Build.VERSION_CODES.ICE_CREAM_SANDWICH)
public class MyTestService extends Service{
//在普通的本地服务中onBind并不会使用
//服务的执行是由主线程执行 在服务中我不能直接执行耗时的操作(访问网络 大数据量的IO操作 比较复杂的算法计算如排序等)
//如果执行这些操作很有可能会阻塞主线程 造成ANR问题,Service中允许执行的操作时长最长不允许超过15秒
@Override
public IBinder onBind(Intent intent) {
// TODO Auto-generated method stub
Log.i("test", "服务onBind");
return null;
}
@Override
public void onCreate() {
// TODO Auto-generated method stub
Log.i("test", "服务被创建");
super.onCreate();
}
@Override
public void onDestroy() {
// TODO Auto-generated method stub
Log.i("test", "服务onDestroy");
super.onDestroy();
}
//onStart和onStartCommand都是用来实现服务要完成的工作的
//Android2.2版本以后onStart被onStartCommand替代
@Override
@Deprecated
public void onStart(Intent intent, int startId) {
// TODO Auto-generated method stub
Log.i("test", "服务onStart");
super.onStart(intent, startId);
}
//这里面最终会是调用onStart
//onStartCommand执行完毕并不代表Service退出
//同一个服务只会创建一个实例 onCreate方法只会执行一遍,即使你多次调用startService
//服务也只会创建一次 ,只不过会多次调用onStart或者onStartCommand
//只有调用了stopService或者在服务内部调用了stopSelf方法服务才会被销毁
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
String str=intent.getStringExtra("mp3name");
//SystemClock.sleep(20000);
Log.i("test", "服务onStartCommand"+" str="+str+" startId="+startId);
//onStartCommand方法的返回值 有三种取值
//START_STICKY 服务如果被意外终止 那在未来的某一个时间 系统会尝试恢复这个服务(重新创建) 但是不会重新构建原有的Intent
// START_REDELIVER_INTENT 会恢复服务 但是 Intent也会恢复 就相当于重新调用了startService
//START_NOT_STICKY 非粘性的 服务意外终止将不会重启
//在服务中启动线程完成后台任务 这个线程的宿主并不是Service,所以服务终止
//并不会影响这个线程的执行,因为这个线程实际的启动者(宿主)是main线程
//需要注意 如果在服务中启动了后台线程 你需要考虑Service意外终止时,你所启动的Thread该如何控制
//如果需要在服务中执行后台线程完成比较复杂的操作,那么可以选用Service的子类IntentService
new Thread(){
public void run()
{
int i=0;
while(true)
{
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
Log.i("test", "i="+i++);
}
}
}.start();
return Service.START_REDELIVER_INTENT;
}
@Override
public void onConfigurationChanged(Configuration newConfig) {
// TODO Auto-generated method stub
super.onConfigurationChanged(newConfig);
}
//当内存比较低时会执行
@Override
public void onLowMemory() {
// TODO Auto-generated method stub
super.onLowMemory();
}
//当这个后台任务被终止时
@Override
public void onTaskRemoved(Intent rootIntent) {
// TODO Auto-generated method stub
super.onTaskRemoved(rootIntent);
}
@Override
public void onTrimMemory(int level) {
// TODO Auto-generated method stub
super.onTrimMemory(level);
}
@Override
public boolean onUnbind(Intent intent) {
// TODO Auto-generated method stub
return super.onUnbind(intent);
}
}
manifest.xml:
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.service.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service android:name="com.service.MyTestService">
<intent-filter >
<action android:name="android.intent.action.MyTestService"/>
</intent-filter>
</service>
</application>
XMl:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity" >
<Button android:id="@+id/btn1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:onClick="clickBtn"
android:text="启动服务"
/>
<Button android:id="@+id/btn2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:onClick="clickBtn"
android:text="停止服务"
/>
</LinearLayout>