私は Dungeons アプリケーションの例を使用しており、その例で提供されている BillingService クラスを使用しています。
私は Java 6 を使用しており、@override は機能しますが、BillingService.java 内の次の 2 つのメソッドでコンパイル エラーが発生します。
/**
* This is called when we are connected to the MarketBillingService.
* This runs in the main UI thread.
*/
@Override
public void onServiceConnected(ComponentName name, IBinder service) {
if (Consts.DEBUG) {
Log.d(TAG, "Billing service connected");
}
mService = IMarketBillingService.Stub.asInterface(service);
runPendingRequests();
}
/**
* This is called when we are disconnected from the MarketBillingService.
*/
@Override
public void onServiceDisconnected(ComponentName name) {
Log.w(TAG, "Billing service disconnected");
mService = null;
}
なぜこれが起こっているのかを誰かが理解するのを手伝ってくれますか?
ありがとう!