Android IntentService使用,androidintent

來源:互聯網
上載者:User

Android IntentService使用,androidintent

因為多數啟動服務不必同時處理多個請求(在多線程情景下會很危險),所以使用IntentService類實現服務是很好的選擇。本經驗將通過繼承IntentService輸出目前時間教大家如何使用IntentService。

<RelativeLayout 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:paddingLeft="@dimen/activity_horizontal_margin"    android:paddingRight="@dimen/activity_horizontal_margin"    android:paddingTop="@dimen/activity_vertical_margin"    android:paddingBottom="@dimen/activity_vertical_margin"    tools:context="com.basillee.asus.demo.MainActivity5">    <Button        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:text="目前時間"        android:id="@+id/button_current_time"        android:layout_centerVertical="true"        android:layout_centerHorizontal="true" /></RelativeLayout>

  然後我們在編寫一個CurrentTimeService類,繼承IntentService

package com.basillee.asus.demo;import android.app.IntentService;import android.content.Intent;import android.text.format.Time;import android.util.Log;public class CurrentTimeService extends IntentService {    public CurrentTimeService(){        super("CurrentTimeService");    }    @Override    protected void onHandleIntent(Intent intent) {        Time time=new Time();        time.setToNow();        String currentTime=time.format("%Y-%m-%d %H:%M:%S");        Log.i("CurrentTimeService",currentTime);    }}

  然後我們在Oncreate方法裡面編寫如下代碼為button增加監聽事件

package com.basillee.asus.demo;import android.app.Activity;import android.content.Intent;import android.os.Bundle;import android.view.View;import android.widget.Button;public class MainActivity5 extends Activity {    @Override    protected void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.activity_main_activity5);        Button button= (Button) findViewById(R.id.button_current_time);        button.setOnClickListener(new View.OnClickListener() {            @Override            public void onClick(View v) {                startService(new Intent(MainActivity5.this, CurrentTimeService.class));            }        });    }}

  更多細節請看: http://jingyan.baidu.com/season/48891

  過節了給大家發百度個百度紅包,大家都得點小錢哈:http://qianbao.baidu.com/hd/red/share/?no=GYVEOtivs8676c3d

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.