gpt4 book ai didi

android - 从 MainActivity 中删除代码

转载 作者:行者123 更新时间:2023-11-29 18:03:36 25 4
gpt4 key购买 nike

我还是 Android 开发的新手,我仍然不知道编写代码的体面方式。目前,我将所有内容都放入我的 MainActivity 中。但我认为这不是编写它的好方法。我一直在谷歌搜索,但我真的不知道要搜索什么。有人有什么建议吗?

我打算尝试获取一些我拥有的代码并将其放入 View 中,但是当我这样做时,我遇到了错误。

例如,当我将它放在 View 中时,我得到 cannot find symbol LOCATION_SERVICE

public class MainView extends View{
public double[] getLoc(){
// Get the location manager
LocationManager locationManager = (LocationManager)getSystemService(LOCATION_SERVICE);
}
}

这基本上是获取用户纬度和经度的函数的一个 fragment 。它在我假设的 View 中不起作用。不过,该代码在我的 MainActivity 中确实有效。

最佳答案

使用

LocationManager locationManager =
(LocationManager)getSystemService(Context.LOCATION_SERVICE);

代替

LocationManager locationManager = 
(LocationManager)getSystemService(LOCATION_SERVICE);

用于访问 LOCATION_SERVICE

并且您还需要使用当前上下文调用 getSystemService 方法来获取服务:

public class MainView extends View{
Context context;

public MainView(Context context){
this.context=context;
}

public double[] getLoc(){
// Get the location manager
LocationManager locationManager =
(LocationManager)context.getSystemService(Context.LOCATION_SERVICE);
}
}

关于android - 从 MainActivity 中删除代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14506128/

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