如何在Kotlin的Application类中进行API请求调用。

huangapple go评论126阅读模式
英文:

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"

huangapple
  • 本文由 发表于 2023年3月9日 17:25:57
  • 转载请务必保留本文链接:https://go.coder-hub.com/75682630.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定