Google's market_billing sample, just like others as this one, connects to the remote service IMarketBillingService through a local service wrapper, BillingService.

I understand that services have the advantage of doing things in the background, but isn't the remote IMarketBillingService enough?

What is the advantage of adding yet another layer to this onion?

What will I lose if I try to connect to the remote IMarketBillingService directly from my main activity, in the UI thread?

If it isn't advisable to connect to the remote IMarketBillingService directly in the UI thread, can the local BillingService be replaced with just another thread in the main activity?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

The local BillingService handles callbacks from the IMarketBillingService when your activity is not running.

The reference ( http://developer.android.com/reference/android/app/Activity.html) says:

"If an activity is paused or stopped, the system can drop the activity from memory by either asking it to finish, or simply killing its process. When it is displayed again to the user, it must be completely restarted and restored to its previous state."

If for example you invoke a RESTORE_TRANSACTIONS billing request, the responses from the Android Market Service may take some time to Arrive. By using a service, you know that you'll always be around to handle responses, regardless of Activity Lifecycle.

Just for fun, I tried to write a small test-app and was sureprised. A running thread can call methods on a paused- or stopped activity. The thread can also modify it's UI even when the activity is not in the foreground. Run the following application, press the home screen to stop the app. Go back after 10 seconds, and see that the TextView has changed...

package com.example.playground;

import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.widget.TextView;

public class MyActivity extends Activity {

    private static String TAG = MyActivity.class.getName();

    /**
     * Called when the activity is first created.
     */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        Thread t = new Thread(new Runnable() {
            public void run() {
                try {
                    Thread.sleep(10000);
                    someMethod();
                } catch (InterruptedException e) {
                    Log.e(TAG, e.getMessage(), e);
                }
            }
        });
        t.start();
    }

    private void someMethod() {
        Log.d(TAG, "Some method called");
        TextView tv = (TextView) findViewById(R.id.textfield);
        tv.setText("Called later");
    }
}
link|improve this answer
2  
Thanks +1 already for a great answer. The need for a service is well explained & exemplified here but... isn't one service (IMarketBillingService) enough? Why two? Why both local and remote? – Bill The Ape Jan 20 at 15:06
If you look at the IMarketBillingService, it is declared as public interface IMarketBillingService extends android.os.IInterface. This is not a service, just a stub that you use to communicate with the remote Service, actually running in the Android Market App if I am not mistaken. The "Service" part of the Classe's name is confusing. – Glenn Bech Jan 26 at 8:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.