ตัวอย่าง: การสื่อสารระหว่างกิจกรรมและบริการโดยใช้การส่งข้อความ


584

ฉันไม่พบตัวอย่างวิธีส่งข้อความระหว่างกิจกรรมและบริการและฉันใช้เวลานานเกินกว่าที่จะหาสิ่งนี้ได้ นี่คือตัวอย่างโครงการสำหรับผู้อื่นเพื่ออ้างอิง

ตัวอย่างนี้ช่วยให้คุณสามารถเริ่มหรือหยุดบริการได้โดยตรงและแยกผูก / แยกออกจากบริการ เมื่อบริการกำลังทำงานอยู่จะเพิ่มจำนวนที่ 10 Hz หากกิจกรรมถูกผูกไว้กับกิจกรรมServiceจะแสดงค่าปัจจุบัน ข้อมูลถูกถ่ายโอนเป็นจำนวนเต็มและเป็นสตริงเพื่อให้คุณสามารถดูวิธีการทำสองวิธีที่แตกต่างกัน นอกจากนี้ยังมีปุ่มในกิจกรรมเพื่อส่งข้อความไปยังบริการ (เปลี่ยนค่าที่เพิ่มขึ้นตามลำดับ)

ภาพหน้าจอ:

สกรีนช็อตของตัวอย่างบริการส่งข้อความของ Android

AndroidManifest.xml:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.exampleservice"
      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=".MyService"></service>
    </application>
    <uses-sdk android:minSdkVersion="8" />
</manifest>

Res \ ค่า \ strings.xml:

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="app_name">ExampleService</string>
    <string name="service_started">Example Service started</string>
    <string name="service_label">Example Service Label</string>
</resources>

Res \ รูปแบบ \ main.xml:

<RelativeLayout
    android:id="@+id/RelativeLayout01"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" >

    <Button
        android:id="@+id/btnStart"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Start Service" >
    </Button>

    <Button
        android:id="@+id/btnStop"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:text="Stop Service" >
    </Button>
</RelativeLayout>

<RelativeLayout
    android:id="@+id/RelativeLayout02"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" >

    <Button
        android:id="@+id/btnBind"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Bind to Service" >
    </Button>

    <Button
        android:id="@+id/btnUnbind"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:text="Unbind from Service" >
    </Button>
</RelativeLayout>

<TextView
    android:id="@+id/textStatus"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="Status Goes Here"
    android:textSize="24sp" />

<TextView
    android:id="@+id/textIntValue"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="Integer Value Goes Here"
    android:textSize="24sp" />

<TextView
    android:id="@+id/textStrValue"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="String Value Goes Here"
    android:textSize="24sp" />

<RelativeLayout
    android:id="@+id/RelativeLayout03"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" >

    <Button
        android:id="@+id/btnUpby1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Increment by 1" >
    </Button>

    <Button
        android:id="@+id/btnUpby10"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:text="Increment by 10" >
    </Button>
</RelativeLayout>

src \ com.exampleservice \ MainActivity.java:

package com.exampleservice;

import android.app.Activity;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.content.ServiceConnection;
import android.os.Bundle;
import android.os.Handler;
import android.os.IBinder;
import android.os.Message;
import android.os.Messenger;
import android.os.RemoteException;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.TextView;

public class MainActivity extends Activity {
    Button btnStart, btnStop, btnBind, btnUnbind, btnUpby1, btnUpby10;
    TextView textStatus, textIntValue, textStrValue;
    Messenger mService = null;
    boolean mIsBound;
    final Messenger mMessenger = new Messenger(new IncomingHandler());

    class IncomingHandler extends Handler {
        @Override
        public void handleMessage(Message msg) {
            switch (msg.what) {
            case MyService.MSG_SET_INT_VALUE:
                textIntValue.setText("Int Message: " + msg.arg1);
                break;
            case MyService.MSG_SET_STRING_VALUE:
                String str1 = msg.getData().getString("str1");
                textStrValue.setText("Str Message: " + str1);
                break;
            default:
                super.handleMessage(msg);
            }
        }
    }
    private ServiceConnection mConnection = new ServiceConnection() {
        public void onServiceConnected(ComponentName className, IBinder service) {
            mService = new Messenger(service);
            textStatus.setText("Attached.");
            try {
                Message msg = Message.obtain(null, MyService.MSG_REGISTER_CLIENT);
                msg.replyTo = mMessenger;
                mService.send(msg);
            }
            catch (RemoteException e) {
                // In this case the service has crashed before we could even do anything with it
            }
        }

        public void onServiceDisconnected(ComponentName className) {
            // This is called when the connection with the service has been unexpectedly disconnected - process crashed.
            mService = null;
            textStatus.setText("Disconnected.");
        }
    };

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        btnStart = (Button)findViewById(R.id.btnStart);
        btnStop = (Button)findViewById(R.id.btnStop);
        btnBind = (Button)findViewById(R.id.btnBind);
        btnUnbind = (Button)findViewById(R.id.btnUnbind);
        textStatus = (TextView)findViewById(R.id.textStatus);
        textIntValue = (TextView)findViewById(R.id.textIntValue);
        textStrValue = (TextView)findViewById(R.id.textStrValue);
        btnUpby1 = (Button)findViewById(R.id.btnUpby1);
        btnUpby10 = (Button)findViewById(R.id.btnUpby10);

        btnStart.setOnClickListener(btnStartListener);
        btnStop.setOnClickListener(btnStopListener);
        btnBind.setOnClickListener(btnBindListener);
        btnUnbind.setOnClickListener(btnUnbindListener);
        btnUpby1.setOnClickListener(btnUpby1Listener);
        btnUpby10.setOnClickListener(btnUpby10Listener);

        restoreMe(savedInstanceState);

        CheckIfServiceIsRunning();
    }

    @Override
    protected void onSaveInstanceState(Bundle outState) {
        super.onSaveInstanceState(outState);
        outState.putString("textStatus", textStatus.getText().toString());
        outState.putString("textIntValue", textIntValue.getText().toString());
        outState.putString("textStrValue", textStrValue.getText().toString());
    }
    private void restoreMe(Bundle state) {
        if (state!=null) {
            textStatus.setText(state.getString("textStatus"));
            textIntValue.setText(state.getString("textIntValue"));
            textStrValue.setText(state.getString("textStrValue"));
        }
    }
    private void CheckIfServiceIsRunning() {
        //If the service is running when the activity starts, we want to automatically bind to it.
        if (MyService.isRunning()) {
            doBindService();
        }
    }

    private OnClickListener btnStartListener = new OnClickListener() {
        public void onClick(View v){
            startService(new Intent(MainActivity.this, MyService.class));
        }
    };
    private OnClickListener btnStopListener = new OnClickListener() {
        public void onClick(View v){
            doUnbindService();
            stopService(new Intent(MainActivity.this, MyService.class));
        }
    };
    private OnClickListener btnBindListener = new OnClickListener() {
        public void onClick(View v){
            doBindService();
        }
    };
    private OnClickListener btnUnbindListener = new OnClickListener() {
        public void onClick(View v){
            doUnbindService();
        }
    };
    private OnClickListener btnUpby1Listener = new OnClickListener() {
        public void onClick(View v){
            sendMessageToService(1);
        }
    };
    private OnClickListener btnUpby10Listener = new OnClickListener() {
        public void onClick(View v){
            sendMessageToService(10);
        }
    };
    private void sendMessageToService(int intvaluetosend) {
        if (mIsBound) {
            if (mService != null) {
                try {
                    Message msg = Message.obtain(null, MyService.MSG_SET_INT_VALUE, intvaluetosend, 0);
                    msg.replyTo = mMessenger;
                    mService.send(msg);
                }
                catch (RemoteException e) {
                }
            }
        }
    }


    void doBindService() {
        bindService(new Intent(this, MyService.class), mConnection, Context.BIND_AUTO_CREATE);
        mIsBound = true;
        textStatus.setText("Binding.");
    }
    void doUnbindService() {
        if (mIsBound) {
            // If we have received the service, and hence registered with it, then now is the time to unregister.
            if (mService != null) {
                try {
                    Message msg = Message.obtain(null, MyService.MSG_UNREGISTER_CLIENT);
                    msg.replyTo = mMessenger;
                    mService.send(msg);
                }
                catch (RemoteException e) {
                    // There is nothing special we need to do if the service has crashed.
                }
            }
            // Detach our existing connection.
            unbindService(mConnection);
            mIsBound = false;
            textStatus.setText("Unbinding.");
        }
    }

    @Override
    protected void onDestroy() {
        super.onDestroy();
        try {
            doUnbindService();
        }
        catch (Throwable t) {
            Log.e("MainActivity", "Failed to unbind from the service", t);
        }
    }
}

src \ com.exampleservice \ MyService.java:

package com.exampleservice;

import java.util.ArrayList;
import java.util.Timer;
import java.util.TimerTask;

import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.app.Service;
import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;
import android.os.IBinder;
import android.os.Message;
import android.os.Messenger;
import android.os.RemoteException;
import android.util.Log;

public class MyService extends Service {
    private NotificationManager nm;
    private Timer timer = new Timer();
    private int counter = 0, incrementby = 1;
    private static boolean isRunning = false;

    ArrayList<Messenger> mClients = new ArrayList<Messenger>(); // Keeps track of all current registered clients.
    int mValue = 0; // Holds last value set by a client.
    static final int MSG_REGISTER_CLIENT = 1;
    static final int MSG_UNREGISTER_CLIENT = 2;
    static final int MSG_SET_INT_VALUE = 3;
    static final int MSG_SET_STRING_VALUE = 4;
    final Messenger mMessenger = new Messenger(new IncomingHandler()); // Target we publish for clients to send messages to IncomingHandler.


    @Override
    public IBinder onBind(Intent intent) {
        return mMessenger.getBinder();
    }
    class IncomingHandler extends Handler { // Handler of incoming messages from clients.
        @Override
        public void handleMessage(Message msg) {
            switch (msg.what) {
            case MSG_REGISTER_CLIENT:
                mClients.add(msg.replyTo);
                break;
            case MSG_UNREGISTER_CLIENT:
                mClients.remove(msg.replyTo);
                break;
            case MSG_SET_INT_VALUE:
                incrementby = msg.arg1;
                break;
            default:
                super.handleMessage(msg);
            }
        }
    }
    private void sendMessageToUI(int intvaluetosend) {
        for (int i=mClients.size()-1; i>=0; i--) {
            try {
                // Send data as an Integer
                mClients.get(i).send(Message.obtain(null, MSG_SET_INT_VALUE, intvaluetosend, 0));

                //Send data as a String
                Bundle b = new Bundle();
                b.putString("str1", "ab" + intvaluetosend + "cd");
                Message msg = Message.obtain(null, MSG_SET_STRING_VALUE);
                msg.setData(b);
                mClients.get(i).send(msg);

            }
            catch (RemoteException e) {
                // The client is dead. Remove it from the list; we are going through the list from back to front so this is safe to do inside the loop.
                mClients.remove(i);
            }
        }
    }

    @Override
    public void onCreate() {
        super.onCreate();
        Log.i("MyService", "Service Started.");
        showNotification();
        timer.scheduleAtFixedRate(new TimerTask(){ public void run() {onTimerTick();}}, 0, 100L);
        isRunning = true;
    }
    private void showNotification() {
        nm = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
        // In this sample, we'll use the same text for the ticker and the expanded notification
        CharSequence text = getText(R.string.service_started);
        // Set the icon, scrolling text and timestamp
        Notification notification = new Notification(R.drawable.icon, text, System.currentTimeMillis());
        // The PendingIntent to launch our activity if the user selects this notification
        PendingIntent contentIntent = PendingIntent.getActivity(this, 0, new Intent(this, MainActivity.class), 0);
        // Set the info for the views that show in the notification panel.
        notification.setLatestEventInfo(this, getText(R.string.service_label), text, contentIntent);
        // Send the notification.
        // We use a layout id because it is a unique number.  We use it later to cancel.
        nm.notify(R.string.service_started, notification);
    }
    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
        Log.i("MyService", "Received start id " + startId + ": " + intent);
        return START_STICKY; // run until explicitly stopped.
    }

    public static boolean isRunning()
    {
        return isRunning;
    }


    private void onTimerTick() {
        Log.i("TimerTick", "Timer doing work." + counter);
        try {
            counter += incrementby;
            sendMessageToUI(counter);

        }
        catch (Throwable t) { //you should always ultimately catch all exceptions in timer tasks.
            Log.e("TimerTick", "Timer Tick Failed.", t);
        }
    }

    @Override
    public void onDestroy() {
        super.onDestroy();
        if (timer != null) {timer.cancel();}
        counter=0;
        nm.cancel(R.string.service_started); // Cancel the persistent notification.
        Log.i("MyService", "Service Stopped.");
        isRunning = false;
    }
}

53
เยี่ยมมาก! ฟีเจอร์ที่ดีอีกอย่างหนึ่ง: หากคุณใส่แอandroid:process=:myservicenameททริบิวต์ลงในserviceแท็กบริการของคุณใน manifest.xml เช่น: <service android:name="sname" android:process=":myservicename" />จากนั้นบริการดังกล่าวจะเรียกใช้บริการของคุณเป็นกระบวนการที่แตกต่างกันดังนั้นในเธรดอื่น ซึ่งหมายความว่าการคำนวณใด ๆ ที่ทำได้หนัก / การร้องขอที่ยาวนานโดยบริการจะไม่แขวนเธรด UI ของคุณ
sydd

28
ฉันรู้ว่าคุณใช้ความพยายามในการทำเช่นนี้ แต่มันจะสมเหตุสมผลกว่าหากวางไว้บน gitHub หรือไซต์การแชร์ซอร์สโค้ดที่คล้ายกันและโพสต์ลิงค์ที่นี่ เป็นเรื่องง่ายสำหรับผู้ที่จะเริ่มต้นใช้งาน
Ehtesh Choudhury

25
ตัวอย่างที่ดี ฉันใส่รหัสนี้ใน repo ออนไลน์ (พร้อมการแก้ไขเล็กน้อย) สำหรับผู้ที่ต้องการโคลน: bitbucket.org/alexfu/androidserviceexample/src
Alex Fu

7
การส่งข้อความเป็นสิ่งที่จำเป็นจริงๆถ้าโปรแกรมของคุณสามารถเรียกใช้บริการของคุณได้ มิฉะนั้นคุณอาจติดกับ Binder ที่ส่งคืนการอ้างอิงถึงบริการและเพียงเรียกวิธีการสาธารณะของมัน
type-a1pha

13
คุณควรสร้างคำถามแล้วสร้างคำตอบด้วยตัวเองไม่ใช่ตอบปัญหาของคำถาม แม้ว่าตัวอย่างที่ดี;)
7hi4g0

คำตอบ:


46

ดูที่ตัวอย่าง LocalService

คุณผลตอบแทนที่เป็นตัวอย่างของตัวเองให้กับผู้บริโภคที่เรียกService onBindจากนั้นคุณสามารถโต้ตอบกับบริการได้โดยตรงเช่นการลงทะเบียนอินเทอร์เฟซผู้ฟังของคุณเองกับบริการเพื่อให้คุณสามารถรับสายกลับ


2
ปัญหาเดียวที่เกิดขึ้นคือมันไม่ได้ใช้ Messenger ดังนั้นจะไม่ตอบคำถามปลอมนี้ ฉันใช้ LocalService แล้ว แต่ฉันดีใจที่พบตัวอย่างของ Messenger / Handler ฉันไม่เชื่อว่า LocalService สามารถใส่ในกระบวนการอื่นได้
เบ็น

@ Christoper-Orr: ฉันขอบคุณมากที่คุณโพสต์ลิงค์ของการAndroid BroadcastReceiverกวดวิชาที่ ฉันใช้ a LocalBroadcastManagerเพื่อแลกเปลี่ยนข้อมูลอย่างต่อเนื่องระหว่างสองActivityอินสแตนซ์
เดิร์ค

ปัญหาLocalBroadcastManagerคือมันไม่ได้ปิดกั้นและคุณต้องรอผลลัพธ์ บางครั้งคุณต้องการผลลัพธ์ทันที
TheRealChx101

คุณช่วยฉันด้วยคำถามนี้stackoverflow.com/questions/51508046/…
Rajesh K

20

สำหรับการส่งข้อมูลไปยังบริการคุณสามารถใช้:

Intent intent = new Intent(getApplicationContext(), YourService.class);
intent.putExtra("SomeData","ItValue");
startService(intent);

และหลังจากอยู่ในบริการใน onStartCommand () รับข้อมูลจากเจตนา

สำหรับการส่งข้อมูลหรือเหตุการณ์จากบริการไปยังแอปพลิเคชัน (สำหรับกิจกรรมอย่างน้อยหนึ่งกิจกรรม):

private void sendBroadcastMessage(String intentFilterName, int arg1, String extraKey) {
    Intent intent = new Intent(intentFilterName);
    if (arg1 != -1 && extraKey != null) {
        intent.putExtra(extraKey, arg1);
    }
    sendBroadcast(intent);
}

วิธีนี้โทรจากบริการของคุณ คุณสามารถส่งข้อมูลสำหรับกิจกรรมของคุณ

private void someTaskInYourService(){

    //For example you downloading from server 1000 files
    for(int i = 0; i < 1000; i++) {
        Thread.sleep(5000) // 5 seconds. Catch in try-catch block
        sendBroadCastMessage(Events.UPDATE_DOWNLOADING_PROGRESSBAR, i,0,"up_download_progress");
    }

สำหรับการรับเหตุการณ์ที่มีข้อมูลให้สร้างและลงทะเบียนวิธี registerBroadcastReceivers () ในกิจกรรมของคุณ:

private void registerBroadcastReceivers(){
    broadcastReceiver = new BroadcastReceiver() {
        @Override
        public void onReceive(Context context, Intent intent) {
            int arg1 = intent.getIntExtra("up_download_progress",0);
            progressBar.setProgress(arg1);
        }
    };
    IntentFilter progressfilter = new IntentFilter(Events.UPDATE_DOWNLOADING_PROGRESS);
    registerReceiver(broadcastReceiver,progressfilter);

สำหรับการส่งข้อมูลเพิ่มเติมคุณสามารถปรับเปลี่ยนวิธีการsendBroadcastMessage();ได้ เตือนความจำ: คุณต้องลงทะเบียนการออกอากาศใน onResume () และยกเลิกการลงทะเบียนด้วยวิธีการ onStop ()!

UPDATE

โปรดอย่าใช้การสื่อสารประเภทของฉันระหว่างกิจกรรมและบริการ นี่เป็นวิธีที่ผิด เพื่อประสบการณ์ที่ดีกว่าโปรดใช้ libs พิเศษเช่นเรา:

1) EventBusจาก greenrobot

2) Ottoจาก Square Inc

PS ฉันใช้ EventBus จาก greenrobot ในโครงการของฉันเท่านั้น


2
ฉันควรลงทะเบียนผู้รับใน onResume ที่ไหนและใน onStop ฉันต้องทำอะไรบ้าง?
user3233280

ใช่. สำหรับการรับเหตุการณ์จากบริการคุณต้องลงทะเบียนการออกอากาศใน onResume จำไว้ว่าคุณต้องยกเลิกการลงทะเบียนออกอากาศใน onStop ตอนนี้ฉันไม่แนะนำให้ใช้วิธีการของฉัน โปรดใช้ libs พิเศษเพื่อสื่อสารกับมุมมอง / กิจกรรม / บริการอื่น ๆ เช่น EventBus github.com/greenrobot/EventBusหรือ Otto github.com/square/otto
a.black13

1
ได้โปรดช่วยฉันฉันจะใช้สิ่งนี้ฉันติดอยู่ในโครงการของฉันในการสื่อสารการบริการ
user3233280

8
Google แนะนำให้ใช้สิ่งนี้หรือคุณแค่บอกว่ามัน "ผิด" เพราะคุณคิดว่าโซลูชันอื่นดีกว่า
Kevin Krumwiede

บวกหนึ่งสำหรับการให้บริการการเชื่อมโยงไปและEventBus Otto
Mohammed Ali

14

หมายเหตุ: คุณไม่จำเป็นต้องตรวจสอบว่าบริการของคุณกำลังทำงานอยู่หรือCheckIfServiceIsRunning()ไม่เพราะbindService()จะเริ่มทำงานหากไม่ได้ทำงานอยู่

นอกจากนี้: หากคุณหมุนโทรศัพท์คุณไม่ต้องการให้มันbindService()อีกเพราะonCreate()จะถูกเรียกอีกครั้ง ให้แน่ใจว่าได้กำหนดonConfigurationChanged()เพื่อป้องกันสิ่งนี้


ในกรณีของฉันฉันไม่ต้องการใช้บริการตลอดเวลา หากบริการกำลังทำงานอยู่แล้วเมื่อกิจกรรมเริ่มต้นขึ้นฉันต้องการผูกมัดกับมัน หากบริการไม่ทำงานเมื่อกิจกรรมเริ่มต้นขึ้นฉันต้องการหยุดให้บริการ
Lance Lefebure

1
ฉันไม่แน่ใจว่าสิ่งนี้เป็นจริง bindService ไม่เริ่มบริการคุณสามารถชี้ไปที่เอกสารได้หรือไม่
Calin

1
developer.android.com/reference/android/app/Service.htmlย่อหน้าแรกServices can be started with Context.startService() and Context.bindService()
บางคนอยู่ที่ไหนสักแห่ง

8
Message msg = Message.obtain(null, 2, 0, 0);
                    Bundle bundle = new Bundle();
                    bundle.putString("url", url);
                    bundle.putString("names", names);
                    bundle.putString("captions",captions); 
                    msg.setData(bundle);

ดังนั้นคุณส่งไปที่บริการ หลังจากนั้นได้รับ


8

ทุกอย่างเป็นเช่น fine.Good ของactivity/serviceการสื่อสารโดยใช้Messenger ได้

หนึ่งความคิดเห็น:วิธีการMyService.isRunning()ไม่จำเป็น .. bindService()สามารถทำได้หลายครั้ง ไม่มีอันตรายใด ๆ

หาก MyService กำลังทำงานในกระบวนการที่แตกต่างกันฟังก์ชั่นคงที่MyService.isRunning()จะกลับเท็จ ดังนั้นไม่จำเป็นต้องใช้ฟังก์ชั่นนี้


2

นี่คือวิธีที่ฉันใช้กิจกรรม -> การสื่อสารการบริการ: ในกิจกรรมที่ฉันมี

private static class MyResultReciever extends ResultReceiver {
     /**
     * Create a new ResultReceive to receive results.  Your
     * {@link #onReceiveResult} method will be called from the thread running
     * <var>handler</var> if given, or from an arbitrary thread if null.
     *
     * @param handler
     */
     public MyResultReciever(Handler handler) {
         super(handler);
     }

     @Override
     protected void onReceiveResult(int resultCode, Bundle resultData) {
         if (resultCode == 100) {
             //dostuff
         }
     }

จากนั้นฉันใช้สิ่งนี้เพื่อเริ่มบริการของฉัน

protected void onCreate(Bundle savedInstanceState) {
MyResultReciever resultReciever = new MyResultReciever(handler);
        service = new Intent(this, MyService.class);
        service.putExtra("receiver", resultReciever);
        startService(service);
}

ในบริการของฉันฉันมี

public int onStartCommand(Intent intent, int flags, int startId) {
    if (intent != null)
        resultReceiver = intent.getParcelableExtra("receiver");
    return Service.START_STICKY;
}

หวังว่าสิ่งนี้จะช่วย


0

ดูเหมือนว่าคุณจะสามารถบันทึกความทรงจำบางส่วนได้ด้วยการประกาศกิจกรรมของคุณด้วย "ใช้ Handler.Callback"


0

การสอนที่ยอดเยี่ยมการนำเสนอที่ยอดเยี่ยม เรียบร้อยง่ายสั้นและอธิบายได้มาก แม้ว่าnotification.setLatestEventInfo(this, getText(R.string.service_label), text, contentIntent);วิธีการจะไม่มาก ตามที่ trante ระบุไว้ที่นี่แนวทางที่ดีจะเป็น:

private static final int NOTIFICATION_ID = 45349;

private void showNotification() {
    NotificationCompat.Builder builder =
            new NotificationCompat.Builder(this)
                    .setSmallIcon(R.mipmap.ic_launcher)
                    .setContentTitle("My Notification Title")
                    .setContentText("Something interesting happened");

    Intent targetIntent = new Intent(this, MainActivity.class);
    PendingIntent contentIntent = PendingIntent.getActivity(this, 0, targetIntent, PendingIntent.FLAG_UPDATE_CURRENT);
    builder.setContentIntent(contentIntent);
    _nManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
    _nManager.notify(NOTIFICATION_ID, builder.build());
}

@Override
public void onDestroy() {
    super.onDestroy();
    if (_timer != null) {_timer.cancel();}
    _counter=0;
    _nManager.cancel(NOTIFICATION_ID); // Cancel the persistent notification.
    Log.i("PlaybackService", "Service Stopped.");
    _isRunning = false;
}

ตรวจสอบตัวเองทุกอย่างทำงานได้อย่างมีเสน่ห์ (ชื่อกิจกรรมและบริการอาจแตกต่างจากของจริง)


0

ฉันได้เห็นคำตอบทั้งหมด ฉันต้องการบอกวิธีที่มีประสิทธิภาพมากที่สุดตอนนี้วัน ที่จะทำให้คุณสื่อสารระหว่างกันActivity - Service - Dialog - Fragments(ทุกอย่าง)

EventBus

lib ที่ฉันใช้ในโครงการนี้มีคุณสมบัติที่ยอดเยี่ยมที่เกี่ยวข้องกับการส่งข้อความ

EventBus ใน 3 ขั้นตอน

  1. กำหนดกิจกรรม:

    public static class MessageEvent { /* Additional fields if needed */ }

  2. เตรียมสมาชิก:

ประกาศและใส่คำอธิบายประกอบวิธีการสมัครสมาชิกของคุณระบุโหมดเธรด :

@Subscribe(threadMode = ThreadMode.MAIN) 
public void onMessageEvent(MessageEvent event) {/* Do something */};

ลงทะเบียนและยกเลิกการลงทะเบียนสมาชิกของคุณ ตัวอย่างเช่นบน Android กิจกรรมและชิ้นส่วนควรลงทะเบียนตามวงจรชีวิต:

@Override
public void onStart() {
    super.onStart();
    EventBus.getDefault().register(this);
}

@Override
public void onStop() {
    super.onStop();
    EventBus.getDefault().unregister(this);
}
  1. โพสต์เหตุการณ์:

    EventBus.getDefault().post(new MessageEvent());

เพียงเพิ่มการพึ่งพานี้ในระดับแอปของคุณ

compile 'org.greenrobot:eventbus:3.1.1'
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.