gpt4 book ai didi

android - 不适用于参数 ()

转载 作者:行者123 更新时间:2023-11-30 03:09:01 25 4
gpt4 key购买 nike

我正在尝试设置 Google Analytics 并遇到此错误:

The method getInstance(Context) in the type EasyTracker is not applicable for the arguments () 

我的代码:

public class MainActivity extends Activity {




@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
@Override
protected void onStart() {
super.onStart();
EasyTracker.getInstance().activityStart(this); // Add this method
}

@Override
protected void onStop() {
super.onStop();
EasyTracker.getInstance().activityStop(this); // Add this method

我是新来的所以请帮忙:)

最佳答案

基本上,错误的意思是,如果您调用 getInstance(),您需要为其提供一个 Context 对象。您在 Activity 中执行此操作,因此 getInstance(this) 应该适合您(在这种情况下,this 将匹配您当前的上下文).

关于android - 不适用于参数 (),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21310142/

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