खोज…


परिचय

AIDL Android इंटरफ़ेस परिभाषा भाषा है।

क्या? क्यों? कैसे ?

क्या? यह एक बंधी हुई सेवा है। यह AIDL सेवा तब तक सक्रिय रहेगी जब तक कि ग्राहक मौजूद न हो। यह मार्सलिंग और अनमर्शिंग कॉन्सेप्ट पर आधारित काम करता है।

क्यों? दूरस्थ अनुप्रयोग आपकी सेवा + मल्टी थ्रेडिंग तक पहुँच सकते हैं। (दूरस्थ अनुप्रयोग अनुरोध)।

कैसे? .Aidl फ़ाइल बनाएँ इंटरफ़ेस लागू करें ग्राहकों के लिए इंटरफ़ेस को बेनकाब करें

एआईडीएल सेवा

ICalculator.aidl

// Declare any non-default types here with import statements

    interface ICalculator {
        int add(int x,int y);
        int sub(int x,int y);
    }

AidlService.java

public class AidlService extends Service {

    private static final String TAG = "AIDLServiceLogs";
    private static final String className = " AidlService";

    public AidlService() {
        Log.i(TAG, className+" Constructor");
    }

    @Override
    public IBinder onBind(Intent intent) {
        // TODO: Return the communication channel to the service.
        Log.i(TAG, className+" onBind");
        return iCalculator.asBinder();
    }

    @Override
    public void onCreate() {
        super.onCreate();
        Log.i(TAG, className+" onCreate");
    }

    @Override
    public void onDestroy() {
        super.onDestroy();
        Log.i(TAG, className+" onDestroy");
    }


    ICalculator.Stub iCalculator = new ICalculator.Stub() {
        @Override
        public int add(int x, int y) throws RemoteException {
            Log.i(TAG, className+" add Thread Name: "+Thread.currentThread().getName());
            int z = x+y;
            return z;
        }

        @Override
        public int sub(int x, int y) throws RemoteException {
            Log.i(TAG, className+" add Thread Name: "+Thread.currentThread().getName());
            int z = x-y;
            return z;
        }
    };

}

सेवा कनेक्शन

 // Return the stub as interface
ServiceConnection serviceConnection = new ServiceConnection() {
        @Override
        public void onServiceConnected(ComponentName name, IBinder service) {
            Log.i(TAG, className + " onServiceConnected");
            iCalculator = ICalculator.Stub.asInterface(service);
        }

        @Override
        public void onServiceDisconnected(ComponentName name) {

            unbindService(serviceConnection);
        }
    };


Modified text is an extract of the original Stack Overflow Documentation
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow