1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-24 01:54:22 +00:00

Re-saved all projects.

This commit is contained in:
Lukasz Kozakiewicz 2017-12-14 15:52:48 +00:00
parent 360449de0b
commit 1f77b356d1
106 changed files with 210 additions and 0 deletions

View file

@ -303,6 +303,10 @@ public class AnalyticsCollection extends Activity
{
super.onResume();
resumeApp();
// Ensure that navigation/status bar visibility is correctly restored.
for (int i = 0; i < viewHolder.getChildCount(); ++i)
((ComponentPeerView) viewHolder.getChildAt (i)).appResumed();
}
@Override
@ -903,6 +907,17 @@ public class AnalyticsCollection extends Activity
{
return true; //xxx needs to check overlapping views
}
//==============================================================================
private native void handleAppResumed (long host);
public void appResumed()
{
if (host == 0)
return;
handleAppResumed (host);
}
}
//==============================================================================