I created an open-source In-App Billing Library to work with in-app billing at a higher-level.
The library implements the full in-app billing specification and stores transactions in an obfuscated database.
I suggest starting with subsclassing AbstractBillingActivity, which allows you to use the basic in-app billing features with calls as simple as:
public void checkBillingSupported();
public void requestPurchase(String itemId);
public void restoreTransactions();
BillingController provides finer-grain control.
The source code is moderately documented and includes a few unit tests. Hopefully it should help to understand in-app billing better.
It should be noted that at the time of writing this the library is a very early release and should not be used as production code.