[android] re-initializing Platform upon receiving onCreate.

This commit is contained in:
rachytski 2012-02-06 18:57:28 +04:00 committed by Alex Zolotarev
parent 28e0f2afaa
commit ae9a2d2a72
3 changed files with 8 additions and 5 deletions

View file

@ -46,10 +46,9 @@ extern "C"
jstring storagePath,
jstring tmpPath,
jstring extTmpPath,
jstring settingsPath)
jstring settingsPath,
jstring emptyModelMessage)
{
if (!g_framework)
{
android::Platform::Instance().Initialize(env,
densityDpi,
screenWidth,
@ -60,8 +59,9 @@ extern "C"
extTmpPath,
settingsPath);
if (!g_framework)
g_framework = new android::Framework(g_jvm);
}
g_framework->SetEmptyModelMessage(emptyModelMessage);
}
////////////////////////////////////////////////////////////////////////////////////////////

View file

@ -109,6 +109,9 @@ namespace android
jstring extTmpPath,
jstring settingsPath)
{
if (m_impl)
delete m_impl;
m_impl = new PlatformImpl(densityDpi, screenWidth, screenHeight);
m_resourcesDir = jni::ToString(env, apkPath);

View file

@ -8,7 +8,7 @@
#include <unistd.h>
#include <sys/stat.h>
Platform::Platform()
Platform::Platform() : m_impl(0)
{}
Platform::~Platform()