Android学习篇章33-Service基础

本文详细介绍了Android中服务的启动方式及管理工作流程,包括通过显式和隐式Intent启动服务的方法,并展示了如何在MainActivity中使用按钮触发服务的启动与停止。此外,还深入探讨了服务生命周期内的关键回调方法,如onCreate、onStartCommand等。
摘要由CSDN通过智能技术生成

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>


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值