forked from organicmaps/organicmaps
[android] Log and handle Android low memory events
Signed-off-by: cyber-toad <the.cyber.toad@proton.me>
This commit is contained in:
parent
bad9da1b28
commit
63acb874f4
3 changed files with 18 additions and 0 deletions
|
@ -1835,4 +1835,11 @@ Java_app_organicmaps_Framework_nativeHasPlacePageInfo(JNIEnv *, jclass)
|
|||
{
|
||||
return static_cast<jboolean>(frm()->HasPlacePageInfo());
|
||||
}
|
||||
|
||||
JNIEXPORT void JNICALL
|
||||
Java_app_organicmaps_Framework_nativeMemoryWarning(JNIEnv *, jclass)
|
||||
{
|
||||
return frm()->MemoryWarning();
|
||||
}
|
||||
|
||||
} // extern "C"
|
||||
|
|
|
@ -409,6 +409,8 @@ public class Framework
|
|||
*/
|
||||
public static native boolean nativeHasPlacePageInfo();
|
||||
|
||||
public static native void nativeMemoryWarning();
|
||||
|
||||
public enum LocalAdsEventType
|
||||
{
|
||||
LOCAL_ADS_EVENT_SHOW_POINT,
|
||||
|
|
|
@ -1857,4 +1857,13 @@ public class MwmActivity extends BaseMwmFragmentActivity
|
|||
RoutingOptions.addOption(roadType);
|
||||
rebuildLastRouteInternal();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onTrimMemory(int level)
|
||||
{
|
||||
super.onTrimMemory(level);
|
||||
Logger.d(TAG, "trim memory, level = " + level);
|
||||
if (level >= TRIM_MEMORY_RUNNING_LOW)
|
||||
Framework.nativeMemoryWarning();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue