summaryrefslogtreecommitdiffstats
path: root/src/com/cyanogenmod/lockclock/preference/CustomLocationPreference.java
diff options
context:
space:
mode:
authorWolfgang Wiedmeyer <wolfgit@wiedmeyer.de>2016-12-13 02:17:59 +0100
committerWolfgang Wiedmeyer <wolfgit@wiedmeyer.de>2016-12-13 02:17:59 +0100
commit37cccfb76ca994a5cf37b2248dce54e1b316ab03 (patch)
treee2febb55099517af31d436d0260f13a50d5f1a71 /src/com/cyanogenmod/lockclock/preference/CustomLocationPreference.java
parent1030b8578fa79c3b662d2806a370fbb83cc9a6a2 (diff)
parent5ad279bfaf041aea373051887babad8bc44e50c5 (diff)
downloadpackages_apps_LockClock-37cccfb76ca994a5cf37b2248dce54e1b316ab03.zip
packages_apps_LockClock-37cccfb76ca994a5cf37b2248dce54e1b316ab03.tar.gz
packages_apps_LockClock-37cccfb76ca994a5cf37b2248dce54e1b316ab03.tar.bz2
Merge branch 'cm-13.0' of https://github.com/CyanogenMod/android_packages_apps_LockClock into replicant-6.0replicant-6.0-beta-0001replicant-6.0-alpha-0006
Diffstat (limited to 'src/com/cyanogenmod/lockclock/preference/CustomLocationPreference.java')
-rw-r--r--src/com/cyanogenmod/lockclock/preference/CustomLocationPreference.java208
1 files changed, 100 insertions, 108 deletions
diff --git a/src/com/cyanogenmod/lockclock/preference/CustomLocationPreference.java b/src/com/cyanogenmod/lockclock/preference/CustomLocationPreference.java
index 6d0992f..c290cf5 100644
--- a/src/com/cyanogenmod/lockclock/preference/CustomLocationPreference.java
+++ b/src/com/cyanogenmod/lockclock/preference/CustomLocationPreference.java
@@ -17,27 +17,27 @@
package com.cyanogenmod.lockclock.preference;
import android.app.AlertDialog;
-import android.app.Dialog;
import android.app.ProgressDialog;
import android.content.Context;
import android.content.DialogInterface;
-import android.os.AsyncTask;
import android.os.Bundle;
+import android.os.Handler;
import android.preference.EditTextPreference;
import android.text.TextUtils;
import android.util.AttributeSet;
import android.view.View;
import android.widget.Button;
import android.widget.Toast;
-
import com.cyanogenmod.lockclock.R;
import com.cyanogenmod.lockclock.misc.Preferences;
-import com.cyanogenmod.lockclock.weather.WeatherProvider.LocationResult;
+import cyanogenmod.weather.CMWeatherManager;
+import cyanogenmod.weather.WeatherLocation;
import java.util.HashSet;
import java.util.List;
-public class CustomLocationPreference extends EditTextPreference {
+public class CustomLocationPreference extends EditTextPreference
+ implements CMWeatherManager.LookupCityRequestListener {
public CustomLocationPreference(Context context) {
super(context);
}
@@ -48,18 +48,35 @@ public class CustomLocationPreference extends EditTextPreference {
super(context, attrs, defStyle);
}
+ private ProgressDialog mProgressDialog;
+ private int mCustomLocationRequestId;
+ private Handler mHandler;
@Override
protected void showDialog(Bundle state) {
super.showDialog(state);
+ mHandler = new Handler(getContext().getMainLooper());
final AlertDialog d = (AlertDialog) getDialog();
- Button okButton = d.getButton(DialogInterface.BUTTON_POSITIVE);
-
+ final Button okButton = d.getButton(DialogInterface.BUTTON_POSITIVE);
okButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
CustomLocationPreference.this.onClick(d, DialogInterface.BUTTON_POSITIVE);
- new WeatherLocationTask(d, getEditText().getText().toString()).execute();
+ final String customLocationToLookUp = getEditText().getText().toString();
+ if (TextUtils.equals(customLocationToLookUp, "")) return;
+ final CMWeatherManager weatherManager = CMWeatherManager.getInstance(getContext());
+ mProgressDialog = new ProgressDialog(getContext());
+ mProgressDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
+ mProgressDialog.setMessage(getContext().getString(R.string.weather_progress_title));
+ mProgressDialog.setOnCancelListener(new DialogInterface.OnCancelListener() {
+ @Override
+ public void onCancel(DialogInterface dialog) {
+ weatherManager.cancelRequest(mCustomLocationRequestId);
+ }
+ });
+ mCustomLocationRequestId = weatherManager.lookupCity(customLocationToLookUp,
+ CustomLocationPreference.this);
+ mProgressDialog.show();
}
});
}
@@ -68,10 +85,12 @@ public class CustomLocationPreference extends EditTextPreference {
protected void onBindDialogView(View view) {
super.onBindDialogView(view);
- String location = Preferences.customWeatherLocationCity(getContext());
+ String location = Preferences.getCustomWeatherLocationCity(getContext());
if (location != null) {
getEditText().setText(location);
getEditText().setSelection(location.length());
+ } else {
+ getEditText().setText("");
}
}
@@ -81,115 +100,88 @@ public class CustomLocationPreference extends EditTextPreference {
super.onDialogClosed(false);
}
- private class WeatherLocationTask extends AsyncTask<Void, Void, List<LocationResult>> {
- private Dialog mDialog;
- private ProgressDialog mProgressDialog;
- private String mLocation;
-
- public WeatherLocationTask(Dialog dialog, String location) {
- mDialog = dialog;
- mLocation = location;
- }
-
- @Override
- protected void onPreExecute() {
- super.onPreExecute();
-
- final Context context = getContext();
+ private void handleResultDisambiguation(final List<WeatherLocation> results) {
+ CharSequence[] items = buildItemList(results);
+ new AlertDialog.Builder(getContext())
+ .setSingleChoiceItems(items, -1, new DialogInterface.OnClickListener() {
+ @Override
+ public void onClick(DialogInterface dialog, int which) {
+ applyLocation(results.get(which));
+ dialog.dismiss();
+ }
+ })
+ .setNegativeButton(android.R.string.cancel, null)
+ .setTitle(R.string.weather_select_location)
+ .show();
+ }
- mProgressDialog = new ProgressDialog(context);
- mProgressDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
- mProgressDialog.setMessage(context.getString(R.string.weather_progress_title));
- mProgressDialog.setOnCancelListener(new DialogInterface.OnCancelListener() {
- @Override
- public void onCancel(DialogInterface dialog) {
- cancel(true);
- }
- });
- mProgressDialog.show();
- }
+ private CharSequence[] buildItemList(List<WeatherLocation> results) {
+ boolean needCountry = false, needPostal = false;
+ String countryId = results.get(0).getCountryId();
+ HashSet<String> postalIds = new HashSet<>();
- @Override
- protected List<LocationResult> doInBackground(Void... input) {
- return Preferences.weatherProvider(getContext()).getLocations(mLocation);
+ for (WeatherLocation result : results) {
+ if (!TextUtils.equals(result.getCountryId(), countryId)) {
+ needCountry = true;
+ }
+ String postalId = result.getCountryId() + "##" + result.getCity();
+ if (postalIds.contains(postalId)) {
+ needPostal = true;
+ }
+ postalIds.add(postalId);
+ if (needPostal && needCountry) {
+ break;
+ }
}
- @Override
- protected void onPostExecute(List<LocationResult> results) {
- super.onPostExecute(results);
-
- final Context context = getContext();
-
- if (results == null || results.isEmpty()) {
- Toast.makeText(context,
- context.getString(R.string.weather_retrieve_location_dialog_title),
- Toast.LENGTH_SHORT)
- .show();
- } else if (results.size() > 1) {
- handleResultDisambiguation(results);
- } else {
- applyLocation(results.get(0));
+ int count = results.size();
+ CharSequence[] items = new CharSequence[count];
+ for (int i = 0; i < count; i++) {
+ WeatherLocation result = results.get(i);
+ StringBuilder builder = new StringBuilder();
+ if (needPostal && result.getPostalCode() != null) {
+ builder.append(result.getPostalCode()).append(" ");
}
- mProgressDialog.dismiss();
+ builder.append(result.getCity());
+ if (needCountry) {
+ String country = result.getCountry() != null
+ ? result.getCountry() : result.getCountryId();
+ builder.append(" (").append(country).append(")");
+ }
+ items[i] = builder.toString();
}
+ return items;
+ }
- private void handleResultDisambiguation(final List<LocationResult> results) {
- CharSequence[] items = buildItemList(results);
- new AlertDialog.Builder(getContext())
- .setSingleChoiceItems(items, -1, new DialogInterface.OnClickListener() {
- @Override
- public void onClick(DialogInterface dialog, int which) {
- applyLocation(results.get(which));
- dialog.dismiss();
- }
- })
- .setNegativeButton(android.R.string.cancel, null)
- .setTitle(R.string.weather_select_location)
- .show();
+ private void applyLocation(final WeatherLocation result) {
+ if (Preferences.setCustomWeatherLocation(getContext(), result)) {
+ String cityName = result.getCity();
+ String state = result.getState();
+ String country = result.getCountry();
+ setText(cityName + "," + state + "/" + country);
}
+ final AlertDialog d = (AlertDialog) getDialog();
+ d.dismiss();
+ }
- private CharSequence[] buildItemList(List<LocationResult> results) {
- boolean needCountry = false, needPostal = false;
- String countryId = results.get(0).countryId;
- HashSet<String> postalIds = new HashSet<String>();
-
- for (LocationResult result : results) {
- if (!TextUtils.equals(result.countryId, countryId)) {
- needCountry = true;
- }
- String postalId = result.countryId + "##" + result.city;
- if (postalIds.contains(postalId)) {
- needPostal = true;
- }
- postalIds.add(postalId);
- if (needPostal && needCountry) {
- break;
- }
- }
-
- int count = results.size();
- CharSequence[] items = new CharSequence[count];
- for (int i = 0; i < count; i++) {
- LocationResult result = results.get(i);
- StringBuilder builder = new StringBuilder();
- if (needPostal && result.postal != null) {
- builder.append(result.postal).append(" ");
- }
- builder.append(result.city);
- if (needCountry) {
- String country = result.country != null
- ? result.country : result.countryId;
- builder.append(" (").append(country).append(")");
+ @Override
+ public void onLookupCityRequestCompleted(int status, final List<WeatherLocation> locations) {
+ mHandler.post(new Runnable() {
+ @Override
+ public void run() {
+ final Context context = getContext();
+ if (locations == null || locations.isEmpty()) {
+ Toast.makeText(context,
+ context.getString(R.string.weather_retrieve_location_dialog_title),
+ Toast.LENGTH_SHORT)
+ .show();
+ } else if (locations.size() > 1) {
+ handleResultDisambiguation(locations);
+ } else {
+ applyLocation(locations.get(0));
}
- items[i] = builder.toString();
+ mProgressDialog.dismiss();
}
- return items;
- }
-
- private void applyLocation(final LocationResult result) {
- Preferences.setCustomWeatherLocationId(getContext(), result.id);
- setText(result.city);
- mDialog.dismiss();
- }
+ });
}
}