Vitalii

Results 37 comments of Vitalii

I found another way to avoid crash and memory leaks (use this code in your fragment): ``` java ... private SocialNetworkManager snm; ... @Override public void onResume() { super.onResume(); if...

Hey! Of course, I had in mind ComposedCursorLoader with methos lazy(). After that I use ArrayAdapter with the resulting collection. This is sample of my code ``` java @Override protected...

Hey, i get messages from LogCat about not closing cursor after usage. It doesn't call crash on my Application, but it may be problem with memory on many queries with...

ok, this is my code BaseGroupsFragment.java: ``` java package com.ultraon.navygroups.fragments; import android.os.Bundle; import android.support.v4.app.LoaderManager; import android.support.v4.content.Loader; import android.support.v4.widget.SwipeRefreshLayout; import android.view.View; import android.widget.ListAdapter; import android.widget.ListView; import android.widget.Toast; import com.telly.groundy.Groundy; import com.telly.groundy.annotations.OnCancel;...

@partition 100% sure! Would you tell me, where you call cursor.close() in "ListWrapperCursor" (in connection to lazy() method), because i didn't see this call. So when i close my fragment,...

@chalup I get this messages time to time, when close Activity that manages appropriate Loader (ComposedCursorLoader)

@chalup I can reproduce this error constantly when i start Activity, initLoader(), then i call restartLoader() and finish() Activity quickly. I think there is problem with onAbandone() method (maybe we...

Can we have a final version merged?

@android10 I see that you use `-P` in `./gradlew -Porg.gradle.jvmargs=-Xmx16g wrapper`, but `-P` means gradle project property, using `-D` e.g. `./gradlew -Dorg.gradle.jvmargs=-Xmx16g wrapper` means that the property will be used...