jueves, 10 de noviembre de 2016

android log correcto

Para una aplicacion Android que use maps, es necesario pedirle permiso a google y generar una key para poder usar sus servicios

con el error Local module descriptor class for com.google.android.gms.googlecertificates not found.

https://developers.google.com/maps/documentation/android-api/?hl=en_US

Credentials, access, security, and identity




Each request to an API that is represented in the API Console
Google supports two mechanisms for creating unique identifiers:
  • OAuth 2.0 client IDs: For applications that use the OAuth 2.0 protocol to call Google APIs, you can use an OAuth 2.0 client ID to generate an access token. The token contains a unique identifier. See Setting up OAuth 2.0 for more information.
  • API keys: An API key is a unique identifier that you generate using the console. Using an API key does not require user action or consent. API keys do not grant access to any account information, and are not used for authorization.
    Use an API key when your application is running on a server and accessing one of the following kinds of data:
    • Data that the data owner has identified as public, such as a public calendar or blog.
    • Data that is owned by a Google service such as Google Maps or Google Translate. (Access limitations might apply.)
    See Setting up API keys for more information.
If you're calling only APIs that do not require user data, such as the Google Custom Search API, then API keys might be simpler to use than OAuth 2.0 access tokens. However, if your application already uses an OAuth 2.0 access token, then there is no need to generate an API key as well. Google ignores passed API keys if a passed OAuth 2.0 access token is already associated with the corresponding project.
Note: You must use either an OAuth 2.0 access token or an API key for all requests to Google APIs represented in the API Console

Ensure that the "Google Maps Android API v2" is enabled.

The current location in GeoLocationHelper is initialized as null and it looks like you don't start listening for location updates. That's why the result of your call to geoLocationHelper.getCurrentLocation();returns null.
From what the code you provided shows you should call geoLocationHelper.startRetrievingLocation() before calling geoLocationHelper.getCurrentLocation();.
Don't forget to unregister from location updates when you don't need them anymore to avoid leaking your context.
shareedit

importantes ligas

http://stackoverflow.com/questions/35391732/virtual-method-double-android-location-location-getlatitude-on-a-null-object
http://stackoverflow.com/questions/32290045/error-invoke-virtual-method-double-android-location-location-getlatitude-on
http://stackoverflow.com/questions/27883587/google-maps-v2-not-working-in-production-with-correct-key
http://stackoverflow.com/questions/27883587/google-maps-v2-not-working-in-production-with-correct-key
Hello Map
import com.google.android.gms.maps.*;
import com.google.android.gms.maps.model.*;
import android.app.Activity;
import android.os.Bundle;

public class MapPane extends Activity implements OnMapReadyCallback {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.map_activity);

        MapFragment mapFragment = (MapFragment) getFragmentManager()
                .findFragmentById(R.id.map);
        mapFragment.getMapAsync(this);
    }

    @Override
    public void onMapReady(GoogleMap map) {
        LatLng sydney = new LatLng(-33.867, 151.206);

        map.setMyLocationEnabled(true);
        map.moveCamera(CameraUpdateFactory.newLatLngZoom(sydney, 13));

        map.addMarker(new MarkerOptions()
                .title("Sydney")
                .snippet("The most populous city in Australia.")
                .position(sydney));
    }
}
Change the Map Type
Indoor Maps
Custom Markers and Info windows
Styling
Flat Markers
Polylines

https://developers.google.com/maps/documentation/android-api/?hl=en_US


package com.kkze.Mappy;

import android.app.Activity;
import android.app.AlertDialog;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.location.Criteria;
import android.location.Location;
import android.location.LocationManager;
import android.net.Uri;
import android.os.Build;
import android.os.Bundle;
import android.provider.Settings;
import android.text.TextUtils;
import android.util.Log;
import android.widget.Toast;

public class PlacesDecoder extends Activity {
Intent intentThatCalled;
public double latitude;
public double longitude;
public LocationManager locationManager;
public Criteria criteria;
public String bestProvider;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    intentThatCalled = getIntent();
    String voice2text = intentThatCalled.getStringExtra("v2txt");
    getLocation(voice2text);
}
public static boolean isLocationEnabled(Context context)
{
    int locationMode = 0;
    String locationProviders;
    if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT)
    {
        try
        {
            locationMode = Settings.Secure.getInt(context.getContentResolver(), Settings.Secure.LOCATION_MODE);
        } catch (Settings.SettingNotFoundException e) {
            e.printStackTrace();
        }
        return locationMode != Settings.Secure.LOCATION_MODE_OFF;
    }
    else
    {
        locationProviders = Settings.Secure.getString(context.getContentResolver(), Settings.Secure.LOCATION_PROVIDERS_ALLOWED);
        return !TextUtils.isEmpty(locationProviders);
    }
}

public void getLocation(String voice2txt) {
    locationManager = (LocationManager)  this.getSystemService(Context.LOCATION_SERVICE);
    criteria = new Criteria();
    bestProvider = String.valueOf(locationManager.getBestProvider(criteria, true)).toString();
    Location location = locationManager.getLastKnownLocation(bestProvider);
    if (isLocationEnabled(PlacesDecoder.this)) {
            Log.e("TAG", "GPS is on");
            latitude = location.getLatitude();
            longitude = location.getLongitude();
            Toast.makeText(PlacesDecoder.this, "latitude:" + latitude + " longitude:" + longitude, Toast.LENGTH_SHORT).show();
            searchNearestPlace(voice2txt);

        }
    else
    {
        AlertDialog.Builder notifyLocationServices = new AlertDialog.Builder(PlacesDecoder.this);
        notifyLocationServices.setTitle("Switch on Location Services");
        notifyLocationServices.setMessage("Location Services must be turned on to complete this action. Also please take note that if on a very weak network connection,  such as 'E' Mobile Data or 'Very weak Wifi-Connections' it may take even 15 mins to load. If on a very weak network connection as stated above, location returned to application may be null or nothing and cause the application to crash.");
        notifyLocationServices.setPositiveButton("Ok, Open Settings", new DialogInterface.OnClickListener() {
            @Override
            public void onClick(DialogInterface dialog, int which) {
                Intent openLocationSettings = new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS);
                PlacesDecoder.this.startActivity(openLocationSettings);
                finish();
            }
        });
        notifyLocationServices.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
            @Override
            public void onClick(DialogInterface dialog, int which) {
                finish();
            }
        });
        notifyLocationServices.show();
    }
}

public void searchNearestPlace(String v2txt) {
    Log.e("TAG", "Started");
    v2txt = v2txt.toLowerCase();
    String[] placesS = {"accounting", "airport", "aquarium", "atm", "attraction", "bakery", "bakeries", "bank", "bar", "cafe", "campground", "casino", "cemetery", "cemeteries", "church", "courthouse", "dentist", "doctor", "electrician", "embassy", "embassies", "establishment", "finance", "florist", "food", "grocery", "groceries", "supermarket", "gym", "health", "hospital", "laundry", "laundries", "lawyer", "library", "libraries", "locksmith", "lodging", "mosque", "museum", "painter", "park", "parking", "pharmacy", "pharmacies", "physiotherapist", "plumber", "police", "restaurant", "school", "spa", "stadium", "storage", "store", "synagog", "synagogue", "university", "universities", "zoo"};
    String[] placesM = {"amusement park", "animal care", "animal care", "animal hospital", "art gallery", "art galleries", "beauty salon", "bicycle store", "book store", "bowling alley", "bus station", "car dealer", "car rental", "car repair", "car wash", "city hall", "clothing store", "convenience store", "department store", "electronics store", "electronic store", "fire station", "funeral home", "furniture store", "gas station", "general contractor", "hair care", "hardware store", "hindu temple", "home good store", "homes good store", "home goods store", "homes goods store", "insurance agency", "insurance agencies", "jewelry store", "liquor store", "local government office", "meal delivery", "meal deliveries", "meal takeaway", "movie rental", "movie theater", "moving company", "moving companies", "night club", "pet store", "place of worship", "places of worship", "post office", "real estate agency", "real estate agencies", "roofing contractor", "rv park", "shoe store", "shopping mall", "subway station", "taxi stand", "train station", "travel agency", "travel agencies", "veterinary care"};
    int index;
    for (int i = 0; i <= placesM.length - 1; i++) {
        Log.e("TAG", "forM");
        if (v2txt.contains(placesM[i])) {
            Log.e("TAG", "sensedM?!");
            index = i;
            Uri gmmIntentUri = Uri.parse("geo:" + latitude + "," + longitude + "?q=" + placesM[index]);
            Intent mapIntent = new Intent(Intent.ACTION_VIEW, gmmIntentUri);
            mapIntent.setPackage("com.google.android.apps.maps");
            startActivity(mapIntent);
            finish();
        }
    }
    for (int i = 0; i <= placesS.length - 1; i++) {
        Log.e("TAG", "forS");
        if (v2txt.contains(placesS[i])) {
            Log.e("TAG", "sensedS?!");
            index = i;
            Uri gmmIntentUri = Uri.parse("geo:" + latitude + "," + longitude + "?q=" + placesS[index]);
            Intent mapIntent = new Intent(Intent.ACTION_VIEW, gmmIntentUri);
            mapIntent.setPackage("com.google.android.apps.maps");
            startActivity(mapIntent);
            finish();
        }
    }
}
11-11 22:30:10.984 814-814/com.tutsplus.mapsdemo E/Zygote: no v2
11-11 22:30:10.984 814-814/com.tutsplus.mapsdemo I/SELinux: Function: selinux_compare_spd_ram , priority [2] , priority version is VE=SEPF_SM-G531H_5.1.1_0048
11-11 22:30:10.984 814-814/com.tutsplus.mapsdemo E/SELinux: [DEBUG] get_category: variable seinfo: default sensitivity: NULL, cateogry: NULL
11-11 22:30:10.984 814-814/com.tutsplus.mapsdemo I/art: Late-enabling -Xcheck:jni
11-11 22:30:11.024 814-814/com.tutsplus.mapsdemo I/SAMP: ActivityThread() - SAMP_ENABLE : true
11-11 22:30:11.174 814-814/com.tutsplus.mapsdemo D/ContextImpl: ContextImpl running for user UserHandle{0} 0
11-11 22:30:11.205 814-814/com.tutsplus.mapsdemo D/ContextImpl: ContextImpl running for user UserHandle{0} 0
11-11 22:30:11.205 814-814/com.tutsplus.mapsdemo W/ResourcesManager: getTopLevelResources: null for user  0
11-11 22:30:11.225 814-814/com.tutsplus.mapsdemo D/ContextImpl: ContextImpl running for user UserHandle{0} 0
11-11 22:30:11.245 814-814/com.tutsplus.mapsdemo D/DisplayManager: DisplayManager()
11-11 22:30:11.245 814-814/com.tutsplus.mapsdemo D/ContextImpl: ContextImpl running for user UserHandle{0} 0
11-11 22:30:11.245 814-814/com.tutsplus.mapsdemo W/ResourcesManager: getTopLevelResources: null for user  0
11-11 22:30:11.245 814-814/com.tutsplus.mapsdemo W/ResourcesManager: getTopLevelResources: null for user  0
11-11 22:30:11.285 814-814/com.tutsplus.mapsdemo D/PhoneWindow: *FMB* installDecor mIsFloating : false
11-11 22:30:11.285 814-814/com.tutsplus.mapsdemo D/PhoneWindow: *FMB* installDecor flags : -2139029248
11-11 22:30:11.375 814-814/com.tutsplus.mapsdemo I/zzy: Making Creator dynamically
11-11 22:30:11.375 814-814/com.tutsplus.mapsdemo D/ContextImpl: ContextImpl running for user UserHandle{0} 0
11-11 22:30:11.375 814-814/com.tutsplus.mapsdemo W/ResourcesManager: getTopLevelResources: null for user  0
11-11 22:30:11.415 814-814/com.tutsplus.mapsdemo W/ResourcesManager: Asset path '/system/framework/com.android.media.remotedisplay.jar' does not exist or contains no resources.
11-11 22:30:11.415 814-814/com.tutsplus.mapsdemo W/ResourcesManager: Asset path '/system/framework/com.android.location.provider.jar' does not exist or contains no resources.
11-11 22:30:11.415 814-814/com.tutsplus.mapsdemo W/ResourcesManager: getTopLevelResources: null for user  0
11-11 22:30:11.495 814-837/com.tutsplus.mapsdemo W/art: Suspending all threads took: 5.645ms
11-11 22:30:11.495 814-814/com.tutsplus.mapsdemo D/ContextImpl: ContextImpl running for user UserHandle{0} 0
11-11 22:30:11.495 814-814/com.tutsplus.mapsdemo W/ResourcesManager: getTopLevelResources: null for user  0
11-11 22:30:11.515 814-837/com.tutsplus.mapsdemo I/art: Background sticky concurrent mark sweep GC freed 10558(591KB) AllocSpace objects, 1(16KB) LOS objects, 0% free, 6MB/6MB, paused 12.664ms total 61.401ms
11-11 22:30:11.575 814-814/com.tutsplus.mapsdemo W/ResourcesManager: getTopLevelResources: null for user  0
11-11 22:30:11.585 814-814/com.tutsplus.mapsdemo W/ResourcesManager: getTopLevelResources: null for user  0
11-11 22:30:11.615 814-814/com.tutsplus.mapsdemo W/f: Suppressed StrictMode policy violation: StrictModeDiskReadViolation
11-11 22:30:11.625 814-814/com.tutsplus.mapsdemo I/Google Maps Android API: Google Play services client version: 7895000
11-11 22:30:11.635 814-814/com.tutsplus.mapsdemo I/Google Maps Android API: Google Play services package version: 9877234
11-11 22:30:11.665 814-814/com.tutsplus.mapsdemo W/f: Suppressed StrictMode policy violation: StrictModeDiskReadViolation
11-11 22:30:11.705 814-814/com.tutsplus.mapsdemo W/f: Suppressed StrictMode policy violation: StrictModeDiskReadViolation
11-11 22:30:11.715 814-814/com.tutsplus.mapsdemo W/f: Suppressed StrictMode policy violation: StrictModeDiskReadViolation
11-11 22:30:11.745 814-814/com.tutsplus.mapsdemo W/f: Suppressed StrictMode policy violation: StrictModeDiskReadViolation
11-11 22:30:11.755 814-814/com.tutsplus.mapsdemo W/f: Suppressed StrictMode policy violation: StrictModeDiskReadViolation
11-11 22:30:11.805 814-814/com.tutsplus.mapsdemo W/f: Suppressed StrictMode policy violation: StrictModeDiskReadViolation
11-11 22:30:11.815 814-814/com.tutsplus.mapsdemo W/f: Suppressed StrictMode policy violation: StrictModeDiskReadViolation
11-11 22:30:11.835 814-814/com.tutsplus.mapsdemo W/f: Suppressed StrictMode policy violation: StrictModeDiskReadViolation
11-11 22:30:11.835 814-814/com.tutsplus.mapsdemo W/f: Suppressed StrictMode policy violation: StrictModeDiskWriteViolation
11-11 22:30:11.855 814-814/com.tutsplus.mapsdemo W/f: Suppressed StrictMode policy violation: StrictModeDiskReadViolation
11-11 22:30:11.905 814-814/com.tutsplus.mapsdemo W/f: Suppressed StrictMode policy violation: StrictModeDiskReadViolation
11-11 22:30:11.905 814-814/com.tutsplus.mapsdemo I/c: Token loaded from file. Expires in: 430502579 ms.
11-11 22:30:11.905 814-814/com.tutsplus.mapsdemo I/c: Scheduling next attempt in 430202 seconds.
11-11 22:30:11.995 814-814/com.tutsplus.mapsdemo W/f: Suppressed StrictMode policy violation: StrictModeDiskWriteViolation
11-11 22:30:11.995 814-814/com.tutsplus.mapsdemo W/f: Suppressed StrictMode policy violation: StrictModeDiskWriteViolation
11-11 22:30:12.065 814-859/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:30:12.065 814-859/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isShipBuild true
11-11 22:30:12.065 814-859/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Thread-72831-180981508: SmartBonding Enabling is false, SHIP_BUILD is true, log to file is false, DBG is false
11-11 22:30:12.065 814-859/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Thread-72831-180981508: SMARTBONDING_FEATURE_ENABLED is false
11-11 22:30:12.065 814-859/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:30:12.226 814-814/com.tutsplus.mapsdemo W/f: Suppressed StrictMode policy violation: StrictModeDiskReadViolation
11-11 22:30:12.226 814-814/com.tutsplus.mapsdemo W/f: Suppressed StrictMode policy violation: StrictModeDiskWriteViolation
11-11 22:30:12.236 814-904/com.tutsplus.mapsdemo W/f: Suppressed StrictMode policy violation: StrictModeDiskReadViolation
11-11 22:30:12.246 814-837/com.tutsplus.mapsdemo W/art: Suspending all threads took: 8.819ms
11-11 22:30:12.266 814-837/com.tutsplus.mapsdemo I/art: Background sticky concurrent mark sweep GC freed 6871(546KB) AllocSpace objects, 2(32KB) LOS objects, 4% free, 9MB/10MB, paused 21.087ms total 53.192ms
11-11 22:30:12.326 814-910/com.tutsplus.mapsdemo D/OpenGLRenderer: Use EGL_SWAP_BEHAVIOR_PRESERVED: false
11-11 22:30:12.346 814-814/com.tutsplus.mapsdemo D/PhoneWindow: *FMB* isFloatingMenuEnabled mFloatingMenuBtn : null
11-11 22:30:12.346 814-814/com.tutsplus.mapsdemo D/PhoneWindow: *FMB* isFloatingMenuEnabled return false
11-11 22:30:12.466 814-910/com.tutsplus.mapsdemo I/OpenGLRenderer: Initialized EGL, version 1.4
11-11 22:30:12.466 814-910/com.tutsplus.mapsdemo D/OpenGLRenderer: Enabling debug mode 0
11-11 22:30:12.726 814-830/com.tutsplus.mapsdemo W/art: Suspending all threads took: 5.493ms
11-11 22:30:12.766 814-814/com.tutsplus.mapsdemo W/Google Maps Android API: Deprecation notice: In a future release, indoor will no longer be supported on satellite, hybrid or terrain type maps. Even where indoor is not supported, isIndoorEnabled() will continue to return the value that has been set via setIndoorEnabled(), as it does now. By default, setIndoorEnabled is 'true'. The API release notes (https://developers.google.com/maps/documentation/android-api/releases) will let you know when indoor support becomes unavailable on those map types.
11-11 22:30:12.816 814-814/com.tutsplus.mapsdemo I/Timeline: Timeline: Activity_idle id: android.os.BinderProxy@3a63b41e time:391776974
11-11 22:30:13.236 814-830/com.tutsplus.mapsdemo W/art: Suspending all threads took: 8.453ms
11-11 22:30:13.287 814-837/com.tutsplus.mapsdemo I/art: Background sticky concurrent mark sweep GC freed 25769(1047KB) AllocSpace objects, 16(1376KB) LOS objects, 17% free, 10MB/13MB, paused 3.570ms total 160.888ms
11-11 22:30:13.377 814-939/com.tutsplus.mapsdemo W/f: Suppressed StrictMode policy violation: StrictModeDiskReadViolation
11-11 22:30:13.387 814-858/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:30:13.667 814-814/com.tutsplus.mapsdemo W/f: Suppressed StrictMode policy violation: StrictModeDiskReadViolation
11-11 22:30:13.667 814-814/com.tutsplus.mapsdemo W/f: Suppressed StrictMode policy violation: StrictModeDiskWriteViolation
11-11 22:30:14.237 814-830/com.tutsplus.mapsdemo W/art: Suspending all threads took: 7.110ms
11-11 22:30:14.257 814-905/com.tutsplus.mapsdemo W/DynamiteModule: Local module descriptor class for com.google.android.gms.googlecertificates not found.
11-11 22:30:14.257 814-905/com.tutsplus.mapsdemo D/ContextImpl: ContextImpl running for user UserHandle{0} 0
11-11 22:30:14.257 814-837/com.tutsplus.mapsdemo I/art: Background sticky concurrent mark sweep GC freed 45227(1527KB) AllocSpace objects, 5(224KB) LOS objects, 16% free, 10MB/13MB, paused 6.286ms total 41.931ms
11-11 22:30:14.267 814-905/com.tutsplus.mapsdemo D/ContextImpl: ContextImpl running for user UserHandle{0} 0
11-11 22:30:14.267 814-905/com.tutsplus.mapsdemo W/ResourcesManager: getTopLevelResources: null for user  0
11-11 22:30:14.278 814-905/com.tutsplus.mapsdemo I/DynamiteModule: Considering local module com.google.android.gms.googlecertificates:0 and remote module com.google.android.gms.googlecertificates:2
11-11 22:30:14.278 814-905/com.tutsplus.mapsdemo I/DynamiteModule: Selected remote version of com.google.android.gms.googlecertificates, version >= 2
11-11 22:30:14.278 814-905/com.tutsplus.mapsdemo D/ContextImpl: ContextImpl running for user UserHandle{0} 0
11-11 22:30:14.288 814-905/com.tutsplus.mapsdemo W/ResourcesManager: getTopLevelResources: null for user  0
11-11 22:30:14.298 814-905/com.tutsplus.mapsdemo W/ResourcesManager: getTopLevelResources: null for user  0
11-11 22:30:14.298 814-905/com.tutsplus.mapsdemo D/GoogleCertificates: com.google.android.gms.googlecertificates module is loaded
11-11 22:30:14.488 814-905/com.tutsplus.mapsdemo D/GoogleCertificatesImpl: Fetched 190 Google release certificates
11-11 22:30:14.488 814-905/com.tutsplus.mapsdemo D/GoogleCertificatesImpl: Fetched 363 Google certificates
11-11 22:30:14.568 814-862/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:30:14.578 814-871/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:30:14.588 814-858/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:30:14.588 814-859/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:30:14.708 814-862/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:30:14.868 814-862/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:30:14.878 814-858/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:30:14.908 814-871/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:30:15.038 814-859/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:30:15.098 814-858/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:30:15.128 814-871/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:30:15.148 814-862/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:30:15.178 814-859/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:30:15.248 814-830/com.tutsplus.mapsdemo W/art: Suspending all threads took: 9.155ms
11-11 22:30:15.288 814-837/com.tutsplus.mapsdemo I/art: Background partial concurrent mark sweep GC freed 5779(308KB) AllocSpace objects, 70(4MB) LOS objects, 24% free, 14MB/19MB, paused 3.723ms total 171.752ms
11-11 22:30:15.909 814-858/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:30:41.064 814-814/com.tutsplus.mapsdemo D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
11-11 22:30:41.744 814-871/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:30:41.764 814-862/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:30:41.844 814-859/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:30:42.015 814-814/com.tutsplus.mapsdemo D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
11-11 22:30:42.235 814-858/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:30:44.137 814-814/com.tutsplus.mapsdemo D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
11-11 22:30:44.907 814-814/com.tutsplus.mapsdemo D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
11-11 22:30:45.498 814-871/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:30:46.629 814-814/com.tutsplus.mapsdemo D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
11-11 22:30:47.280 814-862/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:30:47.320 814-859/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:30:47.330 814-858/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:30:47.330 814-871/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:30:47.480 814-814/com.tutsplus.mapsdemo D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
11-11 22:30:48.581 814-814/com.tutsplus.mapsdemo D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
11-11 22:30:49.482 814-862/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:30:49.492 814-858/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:30:49.492 814-859/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:30:49.502 814-871/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:30:49.672 814-862/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:30:49.832 814-830/com.tutsplus.mapsdemo W/art: Suspending all threads took: 8.239ms
11-11 22:30:49.932 814-871/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:30:50.313 814-814/com.tutsplus.mapsdemo D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
11-11 22:30:50.903 814-859/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:30:50.913 814-858/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:30:50.913 814-862/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:30:50.923 814-871/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:30:51.003 814-859/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:30:51.043 814-871/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:30:51.123 814-862/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:30:54.317 814-814/com.tutsplus.mapsdemo D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
11-11 22:30:54.577 814-837/com.tutsplus.mapsdemo I/art: Background partial concurrent mark sweep GC freed 26104(1174KB) AllocSpace objects, 107(4MB) LOS objects, 24% free, 17MB/22MB, paused 5.737ms total 102.935ms
11-11 22:30:55.908 814-814/com.tutsplus.mapsdemo D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
11-11 22:30:56.409 814-858/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:30:57.640 814-814/com.tutsplus.mapsdemo D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
11-11 22:30:57.750 814-814/com.tutsplus.mapsdemo W/art: Before Android 4.1, method int android.support.v7.internal.widget.ListViewCompat.lookForSelectablePosition(int, boolean) would have incorrectly overridden the package-private method in android.widget.ListView
11-11 22:30:57.850 814-814/com.tutsplus.mapsdemo D/ListView: change accessibility focus position = 0
11-11 22:31:00.202 814-814/com.tutsplus.mapsdemo D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
11-11 22:31:00.392 814-814/com.tutsplus.mapsdemo W/InputEventReceiver: Attempted to finish an input event but the input event receiver has already been disposed.
11-11 22:31:00.392 814-814/com.tutsplus.mapsdemo E/ViewRootImpl: sendUserActionEvent() mView == null
11-11 22:31:03.235 814-814/com.tutsplus.mapsdemo D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
11-11 22:31:05.177 814-814/com.tutsplus.mapsdemo D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
11-11 22:31:05.327 814-814/com.tutsplus.mapsdemo D/ListView: change accessibility focus position = 0
11-11 22:31:06.508 814-814/com.tutsplus.mapsdemo D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
11-11 22:31:06.689 814-814/com.tutsplus.mapsdemo E/ViewRootImpl: sendUserActionEvent() mView == null
11-11 22:31:07.980 814-814/com.tutsplus.mapsdemo D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
11-11 22:31:08.200 814-814/com.tutsplus.mapsdemo D/ListView: change accessibility focus position = 0
11-11 22:31:09.001 814-814/com.tutsplus.mapsdemo D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
11-11 22:31:09.171 814-814/com.tutsplus.mapsdemo E/ViewRootImpl: sendUserActionEvent() mView == null
11-11 22:31:10.022 814-814/com.tutsplus.mapsdemo D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
11-11 22:31:11.674 814-814/com.tutsplus.mapsdemo D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
11-11 22:31:12.654 814-814/com.tutsplus.mapsdemo D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
11-11 22:31:12.855 814-814/com.tutsplus.mapsdemo D/ListView: change accessibility focus position = 0
11-11 22:31:14.016 814-814/com.tutsplus.mapsdemo D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
11-11 22:31:14.206 814-814/com.tutsplus.mapsdemo E/ViewRootImpl: sendUserActionEvent() mView == null
11-11 22:31:15.737 814-814/com.tutsplus.mapsdemo D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
11-11 22:31:15.928 814-814/com.tutsplus.mapsdemo D/ListView: change accessibility focus position = 0
11-11 22:31:17.399 814-814/com.tutsplus.mapsdemo D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
11-11 22:31:17.619 814-814/com.tutsplus.mapsdemo E/ViewRootImpl: sendUserActionEvent() mView == null
11-11 22:31:17.709 814-871/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:31:19.361 814-814/com.tutsplus.mapsdemo D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
11-11 22:31:21.223 814-814/com.tutsplus.mapsdemo D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
11-11 22:31:21.763 814-859/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:31:22.264 814-814/com.tutsplus.mapsdemo D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
11-11 22:32:42.612 814-830/com.tutsplus.mapsdemo W/art: Suspending all threads took: 18.829ms
11-11 22:32:45.625 814-830/com.tutsplus.mapsdemo W/art: Suspending all threads took: 21.636ms
11-11 22:32:49.799 814-862/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:32:50.620 814-830/com.tutsplus.mapsdemo W/art: Suspending all threads took: 21.270ms
11-11 22:32:54.624 814-830/com.tutsplus.mapsdemo W/art: Suspending all threads took: 6.286ms
11-11 22:32:55.635 814-830/com.tutsplus.mapsdemo W/art: Suspending all threads took: 19.134ms
11-11 22:33:14.674 814-830/com.tutsplus.mapsdemo W/art: Suspending all threads took: 15.747ms
11-11 22:33:14.854 814-837/com.tutsplus.mapsdemo I/art: Background partial concurrent mark sweep GC freed 116473(4MB) AllocSpace objects, 20(1032KB) LOS objects, 24% free, 16MB/22MB, paused 8.453ms total 153.015ms
11-11 22:33:47.315 814-814/com.tutsplus.mapsdemo W/f: Suppressed StrictMode policy violation: StrictModeDiskWriteViolation
11-11 22:33:47.325 814-4268/com.tutsplus.mapsdemo W/f: Suppressed StrictMode policy violation: StrictModeDiskReadViolation
11-11 22:34:08.776 4631-4631/com.tutsplus.mapsdemo D/ContextImpl: ContextImpl running for user UserHandle{0} 0
11-11 22:34:08.776 4631-4631/com.tutsplus.mapsdemo W/ResourcesManager: getTopLevelResources: null for user  0
11-11 22:34:08.806 4631-4631/com.tutsplus.mapsdemo D/ContextImpl: ContextImpl running for user UserHandle{0} 0
11-11 22:34:08.856 4631-4631/com.tutsplus.mapsdemo D/ContextImpl: ContextImpl running for user UserHandle{0} 0
11-11 22:34:08.856 4631-4631/com.tutsplus.mapsdemo W/ResourcesManager: getTopLevelResources: null for user  0
11-11 22:34:08.866 4631-4631/com.tutsplus.mapsdemo W/ResourcesManager: getTopLevelResources: null for user  0
11-11 22:34:08.866 4631-4631/com.tutsplus.mapsdemo D/DisplayManager: DisplayManager()
11-11 22:34:08.896 4631-4631/com.tutsplus.mapsdemo D/PhoneWindow: *FMB* installDecor mIsFloating : false
11-11 22:34:08.896 4631-4631/com.tutsplus.mapsdemo D/PhoneWindow: *FMB* installDecor flags : -2139029248
11-11 22:34:08.976 4631-4631/com.tutsplus.mapsdemo I/zzy: Making Creator dynamically
11-11 22:34:08.986 4631-4631/com.tutsplus.mapsdemo D/ContextImpl: ContextImpl running for user UserHandle{0} 0
11-11 22:34:08.986 4631-4631/com.tutsplus.mapsdemo W/ResourcesManager: getTopLevelResources: null for user  0
11-11 22:34:08.986 4631-4631/com.tutsplus.mapsdemo W/ResourcesManager: Asset path '/system/framework/com.android.media.remotedisplay.jar' does not exist or contains no resources.
11-11 22:34:08.986 4631-4631/com.tutsplus.mapsdemo W/ResourcesManager: Asset path '/system/framework/com.android.location.provider.jar' does not exist or contains no resources.
11-11 22:34:08.986 4631-4631/com.tutsplus.mapsdemo W/ResourcesManager: getTopLevelResources: null for user  0
11-11 22:34:09.047 4631-4631/com.tutsplus.mapsdemo D/ContextImpl: ContextImpl running for user UserHandle{0} 0
11-11 22:34:09.047 4631-4631/com.tutsplus.mapsdemo W/ResourcesManager: getTopLevelResources: null for user  0
11-11 22:34:09.107 4631-4631/com.tutsplus.mapsdemo W/ResourcesManager: getTopLevelResources: null for user  0
11-11 22:34:09.117 4631-4631/com.tutsplus.mapsdemo W/ResourcesManager: getTopLevelResources: null for user  0
11-11 22:34:09.147 4631-4631/com.tutsplus.mapsdemo W/f: Suppressed StrictMode policy violation: StrictModeDiskReadViolation
11-11 22:34:09.157 4631-4631/com.tutsplus.mapsdemo I/Google Maps Android API: Google Play services client version: 7895000
11-11 22:34:09.167 4631-4631/com.tutsplus.mapsdemo I/Google Maps Android API: Google Play services package version: 9877234
11-11 22:34:09.177 4631-4631/com.tutsplus.mapsdemo W/f: Suppressed StrictMode policy violation: StrictModeDiskReadViolation
11-11 22:34:09.227 4631-4631/com.tutsplus.mapsdemo W/f: Suppressed StrictMode policy violation: StrictModeDiskReadViolation
11-11 22:34:09.247 4631-4631/com.tutsplus.mapsdemo W/f: Suppressed StrictMode policy violation: StrictModeDiskReadViolation
11-11 22:34:09.267 4631-4631/com.tutsplus.mapsdemo W/f: Suppressed StrictMode policy violation: StrictModeDiskReadViolation
11-11 22:34:09.277 4631-4631/com.tutsplus.mapsdemo W/f: Suppressed StrictMode policy violation: StrictModeDiskReadViolation
11-11 22:34:09.297 4631-4631/com.tutsplus.mapsdemo W/f: Suppressed StrictMode policy violation: StrictModeDiskReadViolation
11-11 22:34:09.307 4631-4631/com.tutsplus.mapsdemo W/f: Suppressed StrictMode policy violation: StrictModeDiskReadViolation
11-11 22:34:09.327 4631-4631/com.tutsplus.mapsdemo W/f: Suppressed StrictMode policy violation: StrictModeDiskReadViolation
11-11 22:34:09.327 4631-4631/com.tutsplus.mapsdemo W/f: Suppressed StrictMode policy violation: StrictModeDiskWriteViolation
11-11 22:34:09.337 4631-4631/com.tutsplus.mapsdemo W/f: Suppressed StrictMode policy violation: StrictModeDiskReadViolation
11-11 22:34:09.387 4631-4631/com.tutsplus.mapsdemo W/f: Suppressed StrictMode policy violation: StrictModeDiskReadViolation
11-11 22:34:09.387 4631-4631/com.tutsplus.mapsdemo I/c: Token loaded from file. Expires in: 430265090 ms.
11-11 22:34:09.387 4631-4631/com.tutsplus.mapsdemo I/c: Scheduling next attempt in 429965 seconds.
11-11 22:34:09.447 4631-4631/com.tutsplus.mapsdemo W/f: Suppressed StrictMode policy violation: StrictModeDiskWriteViolation
11-11 22:34:09.447 4631-4631/com.tutsplus.mapsdemo W/f: Suppressed StrictMode policy violation: StrictModeDiskWriteViolation
11-11 22:34:09.507 4631-4662/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:34:09.507 4631-4662/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isShipBuild true
11-11 22:34:09.507 4631-4662/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Thread-72844-578637037: SmartBonding Enabling is false, SHIP_BUILD is true, log to file is false, DBG is false
11-11 22:34:09.507 4631-4662/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Thread-72844-578637037: SMARTBONDING_FEATURE_ENABLED is false
11-11 22:34:09.507 4631-4662/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:34:09.577 4631-4631/com.tutsplus.mapsdemo W/f: Suppressed StrictMode policy violation: StrictModeDiskReadViolation
11-11 22:34:09.577 4631-4631/com.tutsplus.mapsdemo W/f: Suppressed StrictMode policy violation: StrictModeDiskWriteViolation
11-11 22:34:09.577 4631-4697/com.tutsplus.mapsdemo W/f: Suppressed StrictMode policy violation: StrictModeDiskReadViolation
11-11 22:34:09.597 4631-4646/com.tutsplus.mapsdemo I/art: Background sticky concurrent mark sweep GC freed 11905(1173KB) AllocSpace objects, 4(64KB) LOS objects, 5% free, 9MB/10MB, paused 1.861ms total 100.036ms
11-11 22:34:09.617 4631-4701/com.tutsplus.mapsdemo D/OpenGLRenderer: Use EGL_SWAP_BEHAVIOR_PRESERVED: false
11-11 22:34:09.637 4631-4631/com.tutsplus.mapsdemo D/PhoneWindow: *FMB* isFloatingMenuEnabled mFloatingMenuBtn : null
11-11 22:34:09.637 4631-4631/com.tutsplus.mapsdemo D/PhoneWindow: *FMB* isFloatingMenuEnabled return false
11-11 22:34:09.667 4631-4701/com.tutsplus.mapsdemo I/OpenGLRenderer: Initialized EGL, version 1.4
11-11 22:34:09.667 4631-4701/com.tutsplus.mapsdemo D/OpenGLRenderer: Enabling debug mode 0
11-11 22:34:09.777 4631-4631/com.tutsplus.mapsdemo I/Timeline: Timeline: Activity_idle id: android.os.BinderProxy@1732bca0 time:392013931
11-11 22:34:09.907 4631-4631/com.tutsplus.mapsdemo W/Google Maps Android API: Deprecation notice: In a future release, indoor will no longer be supported on satellite, hybrid or terrain type maps. Even where indoor is not supported, isIndoorEnabled() will continue to return the value that has been set via setIndoorEnabled(), as it does now. By default, setIndoorEnabled is 'true'. The API release notes (https://developers.google.com/maps/documentation/android-api/releases) will let you know when indoor support becomes unavailable on those map types.
11-11 22:34:10.007 4631-4646/com.tutsplus.mapsdemo I/art: Background partial concurrent mark sweep GC freed 3075(226KB) AllocSpace objects, 16(1088KB) LOS objects, 25% free, 10MB/13MB, paused 8.605ms total 160.614ms
11-11 22:34:10.518 4631-4724/com.tutsplus.mapsdemo W/f: Suppressed StrictMode policy violation: StrictModeDiskReadViolation
11-11 22:34:10.528 4631-4663/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:34:10.768 4631-4631/com.tutsplus.mapsdemo W/f: Suppressed StrictMode policy violation: StrictModeDiskReadViolation
11-11 22:34:10.778 4631-4631/com.tutsplus.mapsdemo W/f: Suppressed StrictMode policy violation: StrictModeDiskWriteViolation
11-11 22:34:11.599 4631-4698/com.tutsplus.mapsdemo W/DynamiteModule: Local module descriptor class for com.google.android.gms.googlecertificates not found.
11-11 22:34:11.599 4631-4698/com.tutsplus.mapsdemo D/ContextImpl: ContextImpl running for user UserHandle{0} 0
11-11 22:34:11.609 4631-4698/com.tutsplus.mapsdemo D/ContextImpl: ContextImpl running for user UserHandle{0} 0
11-11 22:34:11.609 4631-4698/com.tutsplus.mapsdemo W/ResourcesManager: getTopLevelResources: null for user  0
11-11 22:34:11.609 4631-4698/com.tutsplus.mapsdemo I/DynamiteModule: Considering local module com.google.android.gms.googlecertificates:0 and remote module com.google.android.gms.googlecertificates:2
11-11 22:34:11.609 4631-4698/com.tutsplus.mapsdemo I/DynamiteModule: Selected remote version of com.google.android.gms.googlecertificates, version >= 2
11-11 22:34:11.609 4631-4698/com.tutsplus.mapsdemo D/ContextImpl: ContextImpl running for user UserHandle{0} 0
11-11 22:34:11.619 4631-4698/com.tutsplus.mapsdemo W/ResourcesManager: getTopLevelResources: null for user  0
11-11 22:34:11.629 4631-4698/com.tutsplus.mapsdemo W/ResourcesManager: getTopLevelResources: null for user  0
11-11 22:34:11.629 4631-4698/com.tutsplus.mapsdemo D/GoogleCertificates: com.google.android.gms.googlecertificates module is loaded
11-11 22:34:11.789 4631-4664/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:34:11.829 4631-4638/com.tutsplus.mapsdemo W/art: Suspending all threads took: 15.106ms
11-11 22:34:11.919 4631-4698/com.tutsplus.mapsdemo D/GoogleCertificatesImpl: Fetched 190 Google release certificates
11-11 22:34:11.929 4631-4698/com.tutsplus.mapsdemo D/GoogleCertificatesImpl: Fetched 363 Google certificates
11-11 22:34:12.420 4631-4665/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:34:42.079 4631-4631/com.tutsplus.mapsdemo D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
11-11 22:34:42.809 4631-4631/com.tutsplus.mapsdemo D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
11-11 22:34:43.630 4631-4646/com.tutsplus.mapsdemo I/art: Background sticky concurrent mark sweep GC freed 59305(1938KB) AllocSpace objects, 15(1530KB) LOS objects, 22% free, 12MB/16MB, paused 2.441ms total 102.600ms
11-11 22:34:44.381 4631-4631/com.tutsplus.mapsdemo D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
11-11 22:34:44.511 4631-4631/com.tutsplus.mapsdemo W/art: Before Android 4.1, method int android.support.v7.internal.widget.ListViewCompat.lookForSelectablePosition(int, boolean) would have incorrectly overridden the package-private method in android.widget.ListView
11-11 22:34:44.691 4631-4631/com.tutsplus.mapsdemo D/ListView: change accessibility focus position = 0
11-11 22:34:46.994 4631-4631/com.tutsplus.mapsdemo D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
11-11 22:34:47.204 4631-4631/com.tutsplus.mapsdemo E/ViewRootImpl: sendUserActionEvent() mView == null
11-11 22:34:48.485 4631-4631/com.tutsplus.mapsdemo D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
11-11 22:34:48.725 4631-4631/com.tutsplus.mapsdemo D/ListView: change accessibility focus position = 0
11-11 22:34:49.356 4631-4631/com.tutsplus.mapsdemo D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
11-11 22:34:49.526 4631-4631/com.tutsplus.mapsdemo E/ViewRootImpl: sendUserActionEvent() mView == null
11-11 22:34:50.797 4631-4631/com.tutsplus.mapsdemo D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
11-11 22:34:50.977 4631-4631/com.tutsplus.mapsdemo D/ListView: change accessibility focus position = 0
11-11 22:34:51.578 4631-4631/com.tutsplus.mapsdemo D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
11-11 22:34:51.748 4631-4631/com.tutsplus.mapsdemo E/ViewRootImpl: sendUserActionEvent() mView == null
11-11 22:34:52.279 4631-4631/com.tutsplus.mapsdemo D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
11-11 22:34:52.509 4631-4631/com.tutsplus.mapsdemo D/ListView: change accessibility focus position = 0
11-11 22:34:53.310 4631-4631/com.tutsplus.mapsdemo D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
11-11 22:34:53.480 4631-4631/com.tutsplus.mapsdemo E/ViewRootImpl: sendUserActionEvent() mView == null
11-11 22:35:12.799 4631-4631/com.tutsplus.mapsdemo D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
11-11 22:35:13.459 4631-4638/com.tutsplus.mapsdemo W/art: Suspending all threads took: 9.948ms
11-11 22:35:13.469 4631-4662/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:35:13.519 4631-4663/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:35:13.529 4631-4664/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:35:13.559 4631-4665/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:35:13.720 4631-4662/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:35:13.990 4631-4631/com.tutsplus.mapsdemo D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
11-11 22:35:14.030 4631-4663/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:35:14.030 4631-4662/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:35:14.110 4631-4665/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:35:47.372 4631-4631/com.tutsplus.mapsdemo D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
11-11 22:35:47.623 4631-4631/com.tutsplus.mapsdemo D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
11-11 22:35:48.534 4631-4631/com.tutsplus.mapsdemo D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
11-11 22:35:50.055 4631-4638/com.tutsplus.mapsdemo W/art: Suspending all threads took: 11.474ms
11-11 22:35:50.125 4631-4646/com.tutsplus.mapsdemo I/art: Background sticky concurrent mark sweep GC freed 108543(3MB) AllocSpace objects, 21(1259KB) LOS objects, 19% free, 16MB/20MB, paused 1.220ms total 190.155ms
11-11 22:35:50.215 4631-4631/com.tutsplus.mapsdemo D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
11-11 22:35:50.455 4631-4631/com.tutsplus.mapsdemo D/ListView: change accessibility focus position = 0
11-11 22:35:52.738 4631-4631/com.tutsplus.mapsdemo D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
11-11 22:35:52.918 4631-4631/com.tutsplus.mapsdemo E/ViewRootImpl: sendUserActionEvent() mView == null
11-11 22:35:52.978 4631-4664/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:35:54.539 4631-4631/com.tutsplus.mapsdemo D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
11-11 22:35:55.460 4631-4631/com.tutsplus.mapsdemo D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
11-11 22:35:56.361 4631-4663/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:35:59.284 4631-4631/com.tutsplus.mapsdemo D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
11-11 22:36:01.176 4631-4631/com.tutsplus.mapsdemo D/ViewRootImpl: ViewPostImeInputStage ACTION_DOWN
11-11 22:36:16.621 4631-4638/com.tutsplus.mapsdemo W/art: Suspending all threads took: 16.357ms
11-11 22:36:20.635 4631-4638/com.tutsplus.mapsdemo W/art: Suspending all threads took: 6.225ms
11-11 22:36:21.626 4631-4638/com.tutsplus.mapsdemo W/art: Suspending all threads took: 8.422ms
11-11 22:36:30.645 4631-4638/com.tutsplus.mapsdemo W/art: Suspending all threads took: 6.530ms
11-11 22:37:56.689 4631-4665/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:39:59.128 4631-4662/com.tutsplus.mapsdemo I/System.out: (HTTPLog)-Static: isSBSettingEnabled false
11-11 22:40:08.627 4631-4638/com.tutsplus.mapsdemo W/art: Suspending all threads took: 9.765ms
11-11 22:40:10.629 4631-4638/com.tutsplus.mapsdemo W/art: Suspending all threads took: 7.720ms
11-11 22:41:15.783 4631-4638/com.tutsplus.mapsdemo W/art: Suspending all threads took: 5.004ms

No hay comentarios:

Publicar un comentario

Blogger Widgets