Why Gallery So Slow / Access GoogleLoginService?

I am working on an application that allows users to view images, so I submit the intent so that the gallery displays the image. For some reason, it takes a few seconds to display the image. Does LogCat show that it is trying to connect to the "GoogleLoginService"? Why is the gallery connected to the Internet? Could this be disabled on the phone or in code?

I/CacheService(19326): Preparing DiskCache for all thumbnails. I/CacheService(19326): DiskCache ready for all thumbnails. I/ActivityManager( 1433): Starting activity: Intent { act=android.intent.action.VIEW dat=file:///mnt/sdcard/x/attachments/68efeba8-7f0c-47bf-b7d7-d714f29f99c7.jpg typ=image/* cmp=com.cooliris.media/.Gallery } I/Gallery (19326): onCreate D/GoogleLoginService( 1601): onBind: Intent { act=android.accounts.AccountAuthenticator cmp=com.google.android.gsf/.loginservice.GoogleLoginService } I/RenderView(19326): First Draw D/GoogleLoginService( 1601): onBind: Intent { act=android.accounts.AccountAuthenticator cmp=com.google.android.gsf/.loginservice.GoogleLoginService } I/ActivityManager( 1433): Displayed activity com.cooliris.media/.Gallery: 477 ms (total 477 ms) D/GoogleLoginService( 1601): onBind: Intent { act=android.accounts.AccountAuthenticator cmp=com.google.android.gsf/.loginservice.GoogleLoginService } I/GridLayer(19326): Slot changing from -1 to -1 
+4
source share
1 answer

The device uses the Gallery3D application, which integrates with Picasa - you log in to Picasa using the Google Account Authenticator. However, most operations with the account occur in a separate thread (if I remember this application correctly), and in fact does not affect the launch.

Almost always gallery thumbnails are extracted from this culprit.

+1
source

All Articles