溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Android學(xué)習(xí)筆記-Service

發(fā)布時(shí)間:2020-08-05 22:22:14 來源:網(wǎng)絡(luò) 閱讀:483 作者:umgsai 欄目:移動(dòng)開發(fā)


 * 1.Service是一個(gè)應(yīng)用程序組件

 * 2.Service沒有圖形化界面

 * 3.Service通常用來處理一些耗時(shí)比較長(zhǎng)的操作

 * 4.可以使用Service更新ContentProvider,發(fā)送Intent以及啟動(dòng)系統(tǒng)的通知等等

 * 

 * 1.Service不是一個(gè)單獨(dú)的進(jìn)程

 * 2.Service不是一個(gè)線程


Android學(xué)習(xí)筆記-Service

界面activity_main.xml

    <Button 
        android:id="@+id/startButton"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="Start service"/>
    
        <Button 
        android:id="@+id/stopButton"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_below="@id/startButton"
        android:text="Stop service"/>

FirstService.java

public class FirstService extends Service{

	@Override
	public IBinder onBind(Intent intent) {
		System.out.println("Service onBind");
		return null;
	}
	
	@Override
	public void onCreate() {
		super.onCreate();
		System.out.println("Service onCreate");
	}
	
	@Override
	public int onStartCommand(Intent intent, int flags, int startId) {
		System.out.println("flags-->" + flags);
		System.out.println("startId-->" + startId);
		System.out.println("Service onStartCommand");
		return super.onStartCommand(intent, flags, startId);
	}
	
	@Override
	public void onDestroy() {
		System.out.println("Service onDestroy");
		super.onDestroy();
	}

}

MainActivity.java

public class MainActivity extends Activity {
/**
 * 1.Service是一個(gè)應(yīng)用程序組件
 * 2.Service沒有圖形化界面
 * 3.Service通常用來處理一些耗時(shí)比較長(zhǎng)的操作
 * 4.可以使用Service更新ContentProvider,發(fā)送Intent以及啟動(dòng)系統(tǒng)的通知等等
 * 
 * 1.Service不是一個(gè)單獨(dú)的進(jìn)程
 * 2.Service不是一個(gè)線程
 * 
 * 啟動(dòng)Context.startService()
 * 停止Context.stopService()
 * Activity繼承自Context所以可以直接調(diào)用startService()和stopService()方法
 */
	
	private Button startButton;
	private Button stopButton;
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		
		startButton = (Button) findViewById(R.id.startButton);
		stopButton = (Button) findViewById(R.id.stopButton);
		
		startButton.setOnClickListener(new StartServiceListener());
		stopButton.setOnClickListener(new StopServiceListener());
	}

	class StartServiceListener implements OnClickListener{

		@Override
		public void onClick(View v) {
			Intent intent = new Intent();
			intent.setClass(MainActivity.this, FirstService.class);
			startService(intent);
		}
		
	}
	
	class StopServiceListener implements OnClickListener{

		@Override
		public void onClick(View v) {
			Intent intent = new Intent();
			intent.setClass(MainActivity.this, FirstService.class);
			stopService(intent);			
		}
		
	}
}

先點(diǎn)擊"Start service"按鈕,再點(diǎn)擊"Stop service"按鈕,控制臺(tái)的輸出如下

11-26 12:42:27.697: I/System.out(1347): Service onCreate

11-26 12:42:35.057: I/System.out(1347): flags-->0

11-26 12:42:35.461: I/System.out(1347): startId-->1

11-26 12:42:35.937: I/System.out(1347): Service onStartCommand

11-26 12:43:07.969: I/System.out(1347): Service onDestroy



向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI