本文介绍了Android:如何初始化类型为"Location"的变量(除了使其等于null以外)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想测试一些我编写的代码,为此,我需要构造一个Location类型的变量,并为其提供一个long/lat值,但是我不确定该怎么做.有什么想法吗?

I'm looking to test some code I've written and to do so I need to construct a variable of type Location and to give it a long / lat value but I'm unsure how I would do so. Any ideas?

推荐答案

API文档对此很清楚.首先创建一个新的Location实例:

The API documentation is quite clear on this. First create a new Location instance:

Location loc = new Location("dummyprovider");

然后使用setter方法设置所需的位置参数,例如:

And then use the setter methods to set the location parameters you need, e.g.:

loc.setLatitude(20.3);
loc.setLongitude(52.6);

这篇关于Android:如何初始化类型为"Location"的变量(除了使其等于null以外)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-02 09:33