Android中Service即時向Activity傳遞資料執行個體分析_Android

來源:互聯網
上載者:User

本文執行個體講述了Android中Service即時向Activity傳遞資料的方法。分享給大家供大家參考。具體如下:

這裡示範一個案例,需求如下:

在Service組件中建立一個線程,該線程用來生產數值,每隔1秒數值自動加1,然後把更新後的數值在介面上即時顯示。

步驟如下:

1、建立一個android項目工程,取名為demo。

2、建立一個Service類,用來即時生產數值,供介面即時顯示。

package com.ljq.activity;import android.app.Service;import android.content.Intent;import android.os.IBinder;import android.util.Log;public class CountService extends Service { private int count = 0; private boolean threadDisable=false; @Override public void onCreate() { super.onCreate(); new Thread(new Runnable() {  @Override  public void run() {  while (!threadDisable) {   try {   Thread.sleep(1000);   } catch (InterruptedException e) {   e.printStackTrace();   }   count++;   Log.v("CountService", "Count is " + count);   //發送廣播   Intent intent=new Intent();   intent.putExtra("count", count);   intent.setAction("com.ljq.activity.CountService");   sendBroadcast(intent);  }  } }).start(); } @Override public IBinder onBind(Intent intent) { return null; } @Override public void onDestroy() { super.onDestroy(); count=0; threadDisable = true; Log.v("CountService", "on destroy"); }}

3、建立一個Activity類,顯示資料。

package com.ljq.activity;import android.app.Activity;import android.content.BroadcastReceiver;import android.content.Context;import android.content.Intent;import android.content.IntentFilter;import android.os.Bundle;import android.view.View;import android.widget.Button;import android.widget.EditText;public class MainActivity extends Activity { private EditText editText=null; private MyReceiver receiver=null;  @Override  public void onCreate(Bundle savedInstanceState) {    super.onCreate(savedInstanceState);    setContentView(R.layout.main);    editText=(EditText)findViewById(R.id.editText);    //啟動服務    startService(new Intent(MainActivity.this, CountService.class)); //註冊廣播接收器 receiver=new MyReceiver(); IntentFilter filter=new IntentFilter(); filter.addAction("com.ljq.activity.CountService"); MainActivity.this.registerReceiver(receiver,filter);  }  @Override protected void onDestroy() {   //結束服務    stopService(new Intent(MainActivity.this, CountService.class)); super.onDestroy();  }  /**   * 擷取廣播資料   *    * @author jiqinlin   *   */  public class MyReceiver extends BroadcastReceiver {   @Override   public void onReceive(Context context, Intent intent) {   Bundle bundle=intent.getExtras();   int count=bundle.getInt("count");   editText.setText(count+"");     }  }}

4、main.xml布局檔案

<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent">  <EditText android:layout_width="fill_parent"    android:layout_height="wrap_content"    android:cursorVisible="false"    android:editable="false"    android:id="@+id/editText"/></LinearLayout>

5、資訊清單檔

<?xml version="1.0" encoding="utf-8"?><manifest xmlns:android="http://schemas.android.com/apk/res/android"   package="com.ljq.activity"   android:versionCode="1"   android:versionName="1.0">  <application android:icon="@drawable/icon" android:label="@string/app_name">    <activity android:name=".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 =".CountService" />  </application>  <uses-sdk android:minSdkVersion="7" /></manifest>

效果如下:

希望本文所述對大家的Android程式設計有所協助。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.