Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的 android 游戏中集成了 OpenFeint,但它会自动加载并在游戏开始时要求启用或禁用 openfeint。如果 Internet 连接速度很慢,则 openfeint 响应时间过长。
如何自动停止 openfeint 加载并要求用户使用它或不使用代码。?
两种选择:
选项 1:代替OpenFeint.initialise,使用OpenFeint.initializeWithoutLoggingIn,然后向用户显示提示。如果他们单击“是”,则调用 OpenFeint.login()。
选项 2:在用户单击“是”之前不要调用初始化。这意味着更多的代码更改(从您的 Application 类的onCreate()移动)但会给您更好的性能,因为初始化 OpenFeint 可能会很慢。