[android] Added missing LocationService and DownloadUI classes

This commit is contained in:
Alex Zolotarev 2011-07-26 22:51:37 +03:00 committed by Alex Zolotarev
parent f67059af15
commit e4dd35f893
2 changed files with 228 additions and 0 deletions

View file

@ -0,0 +1,110 @@
package com.mapswithme.maps;
import com.mapswithme.maps.downloader.DownloadManager;
import android.os.Bundle;
import android.preference.CheckBoxPreference;
import android.preference.Preference;
import android.preference.PreferenceActivity;
import android.preference.PreferenceScreen;
public class DownloadUI extends PreferenceActivity
{
private static String TAG = "DownloadUI";
private native int countriesCount(int group, int country, int region);
private native int countryStatus(int group, int country, int region);
private native long countrySizeInBytes(int group, int country, int region);
private native String countryName(int group, int country, int region);
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
// Root
PreferenceScreen root = getPreferenceManager().createPreferenceScreen(this);
setPreferenceScreen(createCountriesHierarchy(root, -1, -1, -1));
}
private Preference createElement(int group, int country, int region)
{
final String name = countryName(group, country, region);
final int count = countriesCount(group, country, region);
if (count == 0)
{ // it's downloadable country element
CheckBoxPreference c = new CheckBoxPreference(this);
c.setKey(group + " " + country + " " + region);
c.setTitle(name);
final long s = countrySizeInBytes(group, country, region);
final long remoteBytes = (s & 0xffff);
final String sizeString;
if (remoteBytes > 1024 * 1024)
sizeString = remoteBytes / (1024 * 1024) + "Mb";
else
sizeString = remoteBytes / 1024 + "Kb";
switch (countryStatus(group, country, region))
{
case 0: // EOnDisk
c.setSummary("Click to delete " + sizeString);
break;
case 1: // ENotDownloaded
c.setSummary("Click to download " + sizeString);
break;
case 2: // EDownloadFailed
c.setSummary("Download has failed, click again to retry");
break;
case 3: // EDownloading
c.setSummary("Downloading...");
break;
case 4: // EInQueue
c.setSummary("Marked to download");
break;
case 5: // EUnknown
c.setSummary("Unknown state :(");
break;
}
return c;
}
else
{ // it's parent element for downloadable countries
PreferenceScreen parent = getPreferenceManager().createPreferenceScreen(this);
// parent.setKey(group + " " + country + " " + region);
parent.setTitle(name);
// parent.setSummary("");
return createCountriesHierarchy(parent, group, country, region);
}
}
private PreferenceScreen createCountriesHierarchy(PreferenceScreen root, int group, int country, int region)
{
final int count = countriesCount(group, country, region);
for (int i = 0; i < count; ++i)
{
if (group == -1)
root.addPreference(createElement(i, country, region));
else if (country == -1)
root.addPreference(createElement(group, i, region));
else if (region == -1)
root.addPreference(createElement(group, country, i));
}
return root;
}
@Override
public boolean onPreferenceTreeClick(PreferenceScreen preferenceScreen, Preference preference)
{
if (preference.hasKey())
{
final String[] keys = preference.getKey().split(" ");
final int group = Integer.parseInt(keys[0]);
final int country = Integer.parseInt(keys[1]);
final int region = Integer.parseInt(keys[2]);
if (((CheckBoxPreference)preference).isChecked())
{
//
}
}
return super.onPreferenceTreeClick(preferenceScreen, preference);
}
}

View file

@ -0,0 +1,118 @@
package com.mapswithme.maps.location;
import android.content.Context;
import android.hardware.GeomagneticField;
import android.hardware.Sensor;
import android.hardware.SensorEvent;
import android.hardware.SensorEventListener;
import android.hardware.SensorManager;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.os.Bundle;
import android.util.Log;
import android.view.Display;
import android.view.WindowManager;
public class LocationService implements LocationListener, SensorEventListener
{
private static String TAG = "Location";
private static LocationService m_self;
private LocationManager m_locationManager;
private SensorManager m_sensorManager;
private Sensor m_compassSensor;
// To calculate true north for compass
private GeomagneticField m_field;
public static void start(Context c)
{
if (m_self == null)
{
m_self = new LocationService();
// Acquire a reference to the system Location Manager
m_self.m_locationManager = (LocationManager) c.getSystemService(Context.LOCATION_SERVICE);
m_self.m_sensorManager = (SensorManager) c.getSystemService(Context.SENSOR_SERVICE);
m_self.m_compassSensor = m_self.m_sensorManager.getDefaultSensor(Sensor.TYPE_ORIENTATION);
// m_self.m_defaultDisplay = ((WindowManager)c.getSystemService(Context.WINDOW_SERVICE)).getDefaultDisplay();
m_self.m_field = null;
}
m_self.startUpdate();
}
public static void stop()
{
if (m_self != null)
m_self.stopUpdate();
}
private void startUpdate()
{
// Register the listener with the Location Manager to receive location updates
m_locationManager.requestLocationUpdates(LocationManager.PASSIVE_PROVIDER, 0, 0, this);
m_locationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 0, 0, this);
m_locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, this);
m_sensorManager.registerListener(this, m_compassSensor, SensorManager.SENSOR_DELAY_NORMAL);
nativeEnableLocationService(true);
}
private void stopUpdate()
{
m_locationManager.removeUpdates(this);
m_sensorManager.unregisterListener(this);
nativeEnableLocationService(false);
}
@Override
public void onLocationChanged(Location l)
{
// used for compass updates
if (m_field == null)
m_field = new GeomagneticField((float)l.getLatitude(), (float)l.getLongitude(), (float)l.getAltitude(), l.getTime());
nativeLocationChanged(l.getTime(), l.getLatitude(), l.getLongitude(), l.getAccuracy());
Log.d(TAG, l.toString());
}
@Override
public void onProviderDisabled(String provider)
{
Log.d(TAG, "onProviderDisabled " + provider);
}
@Override
public void onProviderEnabled(String provider)
{
Log.d(TAG, "onProviderEnabled " + provider);
}
@Override
public void onStatusChanged(String provider, int status, Bundle extras)
{
Log.d(TAG, "onStatusChanged " + provider + " " + status + " " + extras);
}
@Override
public void onAccuracyChanged(Sensor sensor, int accuracy)
{
Log.d(TAG, "onAccuracyChanged " + sensor + " " + accuracy);
}
@Override
public void onSensorChanged(SensorEvent event)
{
//Log.d(TAG, "onSensorChanged azimuth:" + event.values[0] + " acc:" + event.accuracy + " time:" + event.timestamp);
if (m_field == null)
nativeCompassChanged(event.timestamp, event.values[0], 0.0, 1.0f);
else
nativeCompassChanged(event.timestamp, event.values[0], event.values[0] + m_field.getDeclination(), m_field.getDeclination());
}
private native void nativeEnableLocationService(boolean enable);
private native void nativeLocationChanged(long time, double lat, double lon, float accuracy);
// screenOrientation:
// 0 = 0
// 1 = 90
// 2 = 180
// 3 = 270
private native void nativeCompassChanged(long time, double magneticNorth, double trueNorth, float accuracy);
}