英文:
how to make api request call on Application class on Kotlin
问题
我需要在我的应用程序开始时从一个端点获取数据。我不知道这是否是最佳做法。但我需要在应用程序启动之前获取它。
我在网上找不到建议或解决方案。
英文:
I need to get a data from an endpoint at begin of my app. I don't know if this is the best practice or not. But I need get it before app's started.
I didnt a suggestion or solution on web
答案1
得分: 0
我认为你可以创建一个继承自 Application 类的类,并在 onCreate 函数中调用 request。
class YourApplication : Application() {
override fun onCreate() {
super.onCreate()
// 加载数据
}
}
在清单文件的 <application>
标签中,请添加:android:name=".YourApplication"
英文:
I think you can create a class extend Application class and call request on oncreate function.
class YourApplication : Application() {
override fun onCreate() {
super.onCreate()
// load data
}
}
in mainfest application tag please add : android:name=".YourApplication"
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论