gpt4 book ai didi

Android 应用内计费 - BillingService 在 onServiceConnected 和 onServiceDisconnected 上存在编译错误

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:55:47 26 4
gpt4 key购买 nike

我正在使用 Dungeons 应用程序示例,我正在使用该示例中提供的 BillingService 类。

我使用的是 Java 6,@override 对我有用,但是我在 BillingService.java 中的这两个方法上遇到编译错误:

/**
* 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;
}

有人能帮我理解为什么会这样吗?

谢谢!

最佳答案

确保您的类实现了 ServiceConnection 接口(interface)。

关于Android 应用内计费 - BillingService 在 onServiceConnected 和 onServiceDisconnected 上存在编译错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11457580/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com