我不清楚 Refrofit 适配器和 API 类应该放在 Android 中的什么位置?我应该使用 Application 类还是 Singleton 来保留适配器?API接口类怎么样?
RestAdapter myRestAdapter; // where should I keep this guy?
MyAPI mApi = myRestAdapter.create(MyAPI.class); // and how about this guy?
我有一些不同的 api,例如 MyApi1、MyApi2,它们在应用程序的不同点在片段内部被调用。
谢谢