我制作了一个Android应用程序,在Google Map
的上半部分显示Android Screen
,在Android屏幕的下半部分显示了TextView。
在Google Maps(on the Top half of the android screen)
上,我正在当前位置绘制Circle
,我正在从current location (lat and long values)
传递DDMS perspective in the emulator
。它在模拟器中运行良好。
当我在模拟器上启动应用程序时,首先它在Android屏幕的上半部分显示了一个Google Map,在下半部分显示了一个TextView。然后使用DDMS Perspective,我传递了我当前的位置(lat和long值),并且在传递之后,它在Google地图上的当前位置绘制了一个Circle。
在模拟器中一切正常。
问题陈述: -
但是当我在真实Android Phone
上尝试相同的事情时,只有我的Google Maps
在Android屏幕的上半部分和Android屏幕下半部分的TextView上正确显示。但它没有绘制Circle on my Current Location
。
我在Android手机上连接到wi-fi。我不这么认为我需要在Android手机上传递纬度和经度值,对吗?它应该自动获取当前位置吗?
或者我的Android手机上有什么需要做的吗?
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
locationListener = new GPSLocationListener();
locationManager.requestLocationUpdates(
LocationManager.GPS_PROVIDER,
0,
0,
locationListener);
mapView = (MapView) findViewById(R.id.mapView);
listView = (ListView) findViewById(R.id.mylist);
mapView.setStreetView(true);
mapView.setBuiltInZoomControls(true);
mapController = mapView.getController();
mapController.setZoom(15);
}
private class GPSLocationListener implements LocationListener {
@Override
public void onLocationChanged(Location location) {
if (location != null) {
GeoPoint point = new GeoPoint(
(int) (location.getLatitude() * 1E6),
(int) (location.getLongitude() * 1E6));
findUsersInCurrentRadius(4,location.getLatitude(),location.getLongitude());
mapController.animateTo(point);
mapController.setZoom(15);
// add marker
MapOverlay mapOverlay = new MapOverlay(this,android.R.drawable.star_on,R.drawable.tenm,R.drawable.twentym,R.drawable.thirtym,R.drawable.fourtym);
mapOverlay.setPointToDraw(point);
List<Overlay> listOfOverlays = mapView.getOverlays();
listOfOverlays.clear();
listOfOverlays.add(mapOverlay);
String address = ConvertPointToLocation(point);
Toast.makeText(getBaseContext(), address, Toast.LENGTH_SHORT).show();
mapView.invalidate();
}
}
class MapOverlay extends Overlay {
private GeoPoint pointToDraw;
int[] imageNames=new int[6];
public MapOverlay(GPSLocationListener gpsLocationListener,
int currentUser, int tenm, int twentym, int thirtym, int fourtym) {
imageNames[0]=currentUser;
imageNames[1]=tenm;
imageNames[2]=twentym;
imageNames[3]=thirtym;
imageNames[4]=fourtym;
}
public void setPointToDraw(GeoPoint point) {
pointToDraw = point;
}
public GeoPoint getPointToDraw() {
return pointToDraw;
}
@Override
public boolean draw(Canvas canvas, MapView mapView, boolean shadow, long when) {
super.draw(canvas, mapView, shadow);
//---translate the GeoPoint to screen pixels---
Point screenPts = new Point();
mapView.getProjection().toPixels(pointToDraw, screenPts);
//--------------draw circle----------------------
Point pt = mapView.getProjection().toPixels(pointToDraw,screenPts);
Paint circlePaint = new Paint(Paint.ANTI_ALIAS_FLAG);
circlePaint.setColor(0x30000000);
circlePaint.setStyle(Style.FILL_AND_STROKE);
int totalCircle=4;
int radius=40;
int centerimagesize=35;
for (int i = 1; i <= totalCircle; i ++) {
canvas.drawCircle(screenPts.x,screenPts.y, i*radius, circlePaint);
}
canvas.drawBitmap(BitmapFactory.decodeResource(getResources(),imageNames[0]), (screenPts.x-(centerimagesize/2)),(screenPts.y-(centerimagesize/2)), null);
super.draw(canvas,mapView,shadow);
return true;
}
}
我的AndroidManifest.xml文件 -
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.circlemapandroid"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="3"
android:targetSdkVersion="8" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.INTERNET" />
<application
android:debuggable="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<uses-library android:name="com.google.android.maps" />
<activity
android:name=".ThesisProjectAndroid"
android:label="@string/title_activity_main" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
答案 0 :(得分:2)
我可以从您的代码中看到,只有在收到第一个修补程序后才会绘制圆圈。 您是否在手机设置中启用了GPS(位置和安全性)?如果没有,请启用它。
只有在您从GPS获得第一次修复后才能获得该圈子。你需要在户外使用GPS来获得它。
你在位置监听器中有一个Toast,所以如果你得到一个带有地址值的Toast,以上都不会解决你的问题。
最后为了提高效率,我会移动代码来创建并添加覆盖范围内的侦听器,因为每次收到新的修补程序时都会创建和删除它。“/ p>
答案 1 :(得分:1)
您缺少GPS的一项权限,请在AndroidManifest.xml中添加此权限
<uses-permission android:name="android.permission.ACCESS_GPS"></uses-permission>