10天學通Android開發(2-2)-核心組件Service建立

有些程序不須要交互,在後臺運行,並可長時間運行,不被操做系統殺死,這就是組件Serviceandroid

 

  1. 聲明Service,新建classMyService,擴展自Serviceide

  2. AndroidManifest中配置, Application中添加Serivice,選擇MySerivicethis

    實際添加了一行:spa

    <serviceandroid:name="MyService"></service>操作系統

  3. 添加二個按鈕,啓動Service和中止Serviceorm

     

    <Button事件

           android:id="@+id/btnStartService"ci

            android:layout_width="wrap_content"get

           android:layout_height="wrap_content"it

            android:text="啓動Servive"/>

     

        <Button

           android:id="@+id/btnStopService"

           android:layout_width="wrap_content"

           android:layout_height="wrap_content"

           android:text="中止Service" />

    4)代碼中添加二按鈕的定義:

private Button btnStartService,btnStopService;

  

    @Override

    protectedvoid onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);

        setContentView(R.layout.activity_main);

        btnStartService=(Button) findViewById(R.id.btnStartService);

        btnStopService=(Button) findViewById(R.id.btnStopService);

        

       

}

5)添加兩按鈕的監聽事件,鼠標放紅線處,可自動生成:

(1)btnStartService.setOnClickListener(this);

(2)public class MainActivity extendsActionBarActivity implements OnClickListener

(3)@Override

         publicvoid onClick(View v) {

                  //TODO Auto-generated method stub

                   

                  }

6) 具體onClick內容:

@Override

         publicvoid onClick(View v) {

                  //TODO Auto-generated method stub

                   switch(v.getId()){

                   case R.id.btnStartService:

                   

                   break;

        case R.id.btnStopService:

                   

                   break;

        default:

                break;

                  }

7)啓動Service,須要定義Intent,:

private Intent serviceIntent;

並建立實例:

 serviceIntent=newIntent(this,MyService.class);

8) 在咱們的Service重寫二方法,建立和銷燬:

@Override

         publicvoid onCreate(){

                  System.out.println("建立好了");

                  super.onCreate();

         }

        

         @Override

         publicvoid onDestroy(){

                  System.out.println("被銷燬了");

                  super.onDestroy();

         }      

9) 當前Activity銷燬,Service還會再運行,經過設置->應用程序->運行的程序或服務,可看到。

相關文章
相關標籤/搜索