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:
parent
360449de0b
commit
1f77b356d1
106 changed files with 210 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
//==============================================================================
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue