Search in sources :

Example 46 with Country

use of android.location.Country in project android_frameworks_base by ParanoidAndroid.

the class ComprehensiveCountryDetectorTest method testLocationBasedCountryNotFound.

public void testLocationBasedCountryNotFound() {
    final Country resultCountry = new Country(TestCountryDetector.COUNTRY_ISO, Country.COUNTRY_SOURCE_SIM);
    TestCountryDetector countryDetector = new TestCountryDetector() {

        @Override
        protected Country getSimBasedCountry() {
            return resultCountry;
        }
    };
    CountryListenerImpl listener = new CountryListenerImpl();
    countryDetector.setCountryListener(listener);
    Country country = countryDetector.detectCountry();
    assertTrue(sameCountry(country, resultCountry));
    assertTrue(countryDetector.locationBasedDetectorStarted());
    countryDetector.notifyLocationBasedListener(null);
    assertFalse(listener.notified());
    assertTrue(sameCountry(listener.getCountry(), null));
    assertTrue(countryDetector.locationBasedDetectorStopped());
    assertTrue(countryDetector.locationRefreshStarted());
    countryDetector.stop();
    assertTrue(countryDetector.locationRefreshCancelled());
}
Also used : Country(android.location.Country)

Example 47 with Country

use of android.location.Country in project qksms by moezbhatti.

the class QKSMSAppBase method getCurrentCountryIso.

// This function CAN return null.
public String getCurrentCountryIso() {
    if (mCountryIso == null) {
        Country country = new Country(Locale.getDefault().getCountry(), Country.COUNTRY_SOURCE_LOCALE);
        mCountryIso = country.getCountryIso();
    }
    return mCountryIso;
}
Also used : Country(android.location.Country)

Example 48 with Country

use of android.location.Country in project platform_frameworks_base by android.

the class CountryDetectorServiceTest method testNotifyListeners.

public void testNotifyListeners() throws RemoteException {
    CountryDetectorServiceTester serviceTester = new CountryDetectorServiceTester(getContext());
    CountryListenerTester listenerTesterA = new CountryListenerTester();
    CountryListenerTester listenerTesterB = new CountryListenerTester();
    Country country = new Country("US", Country.COUNTRY_SOURCE_NETWORK);
    serviceTester.systemRunning();
    waitForSystemReady(serviceTester);
    serviceTester.addCountryListener(listenerTesterA);
    serviceTester.addCountryListener(listenerTesterB);
    serviceTester.notifyReceivers(country);
    assertTrue(serviceTester.isListenerSet());
    assertTrue(listenerTesterA.isNotified());
    assertTrue(listenerTesterB.isNotified());
    serviceTester.removeCountryListener(listenerTesterA);
    serviceTester.removeCountryListener(listenerTesterB);
    assertFalse(serviceTester.isListenerSet());
}
Also used : Country(android.location.Country)

Example 49 with Country

use of android.location.Country in project platform_frameworks_base by android.

the class ComprehensiveCountryDetectorTest method testDetectNetworkBasedCountry.

public void testDetectNetworkBasedCountry() {
    final Country resultCountry = new Country(TestCountryDetector.COUNTRY_ISO, Country.COUNTRY_SOURCE_NETWORK);
    TestCountryDetector countryDetector = new TestCountryDetector() {

        @Override
        protected Country getNetworkBasedCountry() {
            return resultCountry;
        }
    };
    CountryListenerImpl listener = new CountryListenerImpl();
    countryDetector.setCountryListener(listener);
    Country country = countryDetector.detectCountry();
    assertTrue(sameCountry(country, resultCountry));
    assertFalse(listener.notified());
    assertFalse(countryDetector.locationBasedDetectorStarted());
    assertFalse(countryDetector.locationRefreshStarted());
    countryDetector.stop();
}
Also used : Country(android.location.Country)

Example 50 with Country

use of android.location.Country in project platform_frameworks_base by android.

the class ComprehensiveCountryDetectorTest method testStoppingDetector.

public void testStoppingDetector() {
    // Test stopping detector when LocationBasedCountryDetector was started
    final Country resultCountry = new Country(TestCountryDetector.COUNTRY_ISO, Country.COUNTRY_SOURCE_SIM);
    TestCountryDetector countryDetector = new TestCountryDetector() {

        @Override
        protected Country getSimBasedCountry() {
            return resultCountry;
        }
    };
    CountryListenerImpl listener = new CountryListenerImpl();
    countryDetector.setCountryListener(listener);
    Country country = countryDetector.detectCountry();
    assertTrue(sameCountry(country, resultCountry));
    assertTrue(countryDetector.locationBasedDetectorStarted());
    countryDetector.stop();
    // The LocationBasedDetector should be stopped.
    assertTrue(countryDetector.locationBasedDetectorStopped());
    // The location refresh should not running.
    assertTrue(countryDetector.locationRefreshCancelled());
}
Also used : Country(android.location.Country)

Aggregations

Country (android.location.Country)71 CountryListener (android.location.CountryListener)6 ICountryListener (android.location.ICountryListener)6 ComprehensiveCountryDetector (com.android.server.location.ComprehensiveCountryDetector)6 CountryDetector (android.location.CountryDetector)4 Context (android.content.Context)1 StrictMode (android.os.StrictMode)1 LifecycleHandler (com.moez.QKSMS.common.LifecycleHandler)1 PduLoaderManager (com.moez.QKSMS.common.google.PduLoaderManager)1 ThumbnailManager (com.moez.QKSMS.common.google.ThumbnailManager)1