成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

service后臺開線程及廣播做一個計時器

怎樣用service后臺開線程及廣播做一個計時器?這篇文章分別介紹了后臺開線程和廣播做一個計時器的方法,代碼示例非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下。

我們提供的服務有:成都網(wǎng)站設計、網(wǎng)站建設、微信公眾號開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認證、龍城ssl等。為超過千家企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務,是有科學管理、有技術的龍城網(wǎng)站制作公司

1.首先寫一個服務,在onStartCommand方法里開啟線程,每次startService就會調一次onStartCommand方法

import java.util.List;

import android.app.Notification;

import android.app.NotificationManager;

import android.app.PendingIntent;

import android.app.Service;

import android.content.Context;

import android.content.Intent;

import android.content.IntentFilter;

import android.media.MediaPlayer;

import android.os.Binder;

import android.os.Handler;

import android.os.IBinder;

import android.util.Log;

public class LocalService extends Service {

public static final String ACTION = "com.happyparking.service.LocalService";

private static final String TAG = "LocalService";

private IBinder binder = new LocalService.LocalBinder();

final Handler handler = new Handler();

int lastTime = 0;

boolean running = false;

Intent intent = new Intent(); // Itent就是我們要發(fā)送的內容

Runnable runnable = new Runnable() {

@Override

public void run() {

Log.e(TAG, "線程," + "倒計時=" + lastTime);

handler.postDelayed(this, 1000);// 50是延時時長

lastTime = lastTime - 1;

intent.putExtra("time", lastTime);

intent.setAction(Configs.Time_Action); // 設置你這個廣播的action,只有和這個action一樣的接受者才能接受者才能接收廣播

sendBroadcast(intent);

if (lastTime <= 0) {

Log.e(TAG, "結束.....");

handler.removeCallbacks(this);

running = false;

}

}

};

@Override

public IBinder onBind(Intent intent) {

return binder;

}

@Override

public void onCreate() {

Log.e(TAG, "onCreate");

// 這里可以啟動媒體播放器

// if(mediaPlayer==null)

// mediaPlayer=MediaPlayer.create(this, uri);

super.onCreate();

}

@Override

public void onStart(Intent intent, int startId) {

super.onStart(intent, startId);

}

@Override

public int onStartCommand(Intent intent, int flags, int startId) {

Log.e(TAG, "onStartCommand");

if (running)

handler.removeCallbacks(runnable);

if(intent!=null)

lastTime = intent.getIntExtra("time", 0);

handler.postDelayed(runnable, 1000);

running = true;

Log.e(TAG, "onStart" + "開始倒計時=" + lastTime);

return START_STICKY;

}

@Override

public void onDestroy() {

Log.e(TAG, "onDestroy");

// handler.removeCallbacks(runnable);

stopSelf();

super.onDestroy();

}

// 定義內容類繼承Binder

public class LocalBinder extends Binder {

// 返回本地服務

public LocalService getService() {

return LocalService.this;

}

}

}

2.在清單文件里面注冊廣播

  <service android:name="com.happyparking.service.LocalService" >

            <intent-filter>

                <action android:name="com.happyparking.service.LocalService" />

            </intent-filter>

        </service>

3.在activity或者片段里面寫廣播,接收條件,注冊廣播,記得推出界面后注銷廣播

private void initReceiver() {

timeReceiver = new TimeReceiver();

IntentFilter filter = new IntentFilter();

filter.addAction(Configs.Time_Action); // 只有持有相同的action的接受者才能接收此廣播

getActivity().registerReceiver(timeReceiver, filter);

}

public class TimeReceiver extends BroadcastReceiver {

@Override

public void onReceive(Context arg0, Intent intent) {

// TODO Auto-generated method stub

if (intent != null) {//在這里面接收信息

}

}

//注銷廣播

@Override

public void onDestroy() {

// TODO Auto-generated method stub

super.onDestroy();

getActivity().unregisterReceiver(timeReceiver);

}

4.開啟廣播,可以帶入信息,第一次會啟動onStart,此后不再啟動onStart,但onStartCommand每次都會開啟:

public void sendMyService() {

Intent service = new Intent(LocalService.ACTION);//LocalService.ACTION是廣播條件

service.putExtra("time", second);//帶入信息,

// ((MainActivity)content).startMyService(10,(TextView)mMenuView.findViewById(R.id.tvTime));

content.startService(service);

}

以上就是service后臺開線程及廣播做一個計時器的具體操作,代碼應該是足夠清楚的,而且我也相信有相當?shù)囊恍├涌赡苁俏覀內粘9ぷ骺赡軙姷玫降?。通過這篇文章,希望你能收獲更多。

當前文章:service后臺開線程及廣播做一個計時器
網(wǎng)頁鏈接:http://jinyejixie.com/article24/posoje.html

成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供建站公司、品牌網(wǎng)站建設、靜態(tài)網(wǎng)站ChatGPT、面包屑導航、微信小程序

廣告

聲明:本網(wǎng)站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)

外貿網(wǎng)站建設
普陀区| 崇州市| 宜黄县| 甘孜县| 泰顺县| 潢川县| 辽中县| 类乌齐县| 麦盖提县| 资溪县| 固阳县| 青铜峡市| 华池县| 双鸭山市| 长阳| 怀化市| 遵化市| 汝南县| 沾益县| 抚顺县| 丹江口市| 清镇市| 阳西县| 南溪县| 图木舒克市| 宁德市| 阳山县| 台山市| 广河县| 沐川县| 仁寿县| 乐陵市| 舞阳县| 涞源县| 中卫市| 新田县| 黎川县| 阿图什市| 喀什市| 炎陵县| 深水埗区|