我正在使用以下內容來模擬我在Android中的位置。在android中模擬位置
public class GPSwork extends Activity implements LocationListener{
LocationManager locationManager;
String mocLocationProvider;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
mocLocationProvider = LocationManager.GPS_PROVIDER;
setLocation(28.574853,78.063201);
}
public void setLocation(double latitude, double longitude) {
locationManager.addTestProvider(mocLocationProvider, false, true, false, false, false, false, false, 0, 5);
locationManager.setTestProviderEnabled(mocLocationProvider, true);
locationManager.requestLocationUpdates(mocLocationProvider, 0, 0, this);
Location loc = new Location(mocLocationProvider);
loc.setTime(System.currentTimeMillis());
loc.setLatitude(latitude);
loc.setLongitude(longitude);
locationManager.setTestProviderLocation(mocLocationProvider, loc);
}
public void onLocationChanged(Location location) {
// TODO Auto-generated method stub
}
public void onProviderDisabled(String provider) {
// TODO Auto-generated method stub
}
public void onProviderEnabled(String provider) {
// TODO Auto-generated method stub
}
public void onStatusChanged(String provider, int status, Bundle extras) {
// TODO Auto-generated method stub
}
}
但它不工作。我想在真實設備中看到它,並且該位置的泡泡閃爍,但我沒有得到任何東西。請糾正我的代碼,並幫助我。我使用了權限。
我想建立一個應用程序similatiom到位置spoofer.Actually當我們打開谷歌地圖,它會顯示我們目前的位置,藍色在我們location..similarly閃爍,如果我改變了座標即緯度和緯度它表明,我在藍色閃爍該位置,
![替代文本] [1] 這是屏幕短..
我的XML罰款
<?xml version="1.0" encoding="utf-8"?>
<com.google.android.maps.MapView
android:id="@+id/mapView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:apiKey="0Sy8vgJlQkFxcisUAkrxu3xN33dqFgBetCg4jxg"
/>
嗨,感謝您的回覆...我不想要當前的位置..我想設置經度和緯度,以獲得所需的位置...與藍色閃爍bubble.Any幫助 – user455422 2010-09-23 07:19:41
那麼你根本不需要位置監聽器,只是一些虛擬數據。你想在地圖上設置位置嗎? – 2010-09-23 07:36:52
是的,我想設置地圖上的位置,並在該位置藍色閃爍應該出現...我怎麼能做到這個藝術工作..?請幫助我..類似於位置欺騙.. – user455422 2010-09-23 07:51:29