在的LocationManager 2.1不工作?(LocationManager in 2.1 n

2019-10-20 04:14发布

我一直在试图让下面的代码为最后4小时的工作。

public void clearLocation() { 
    LocationManager locMan =
            (LocationManager)getSystemService(Context.LOCATION_SERVICE); 
    locMan.clearTestProviderLocation("gps"); 

我的问题是,它只能与Android 1.5的工作。 在1.6及更高版本,当它到达第二条语句,它只是崩溃。

我一直在寻找通过各种代码段和教程,但一直没能找到这事。

问候,亚当。

Answer 1:

嗯...发现,你不能改变有关1.6+位置提供“GPS”什么



文章来源: LocationManager in 2.1 not working?