mirror of
https://github.com/apache/cordova-android.git
synced 2025-02-20 23:56:20 +08:00
Merge pull request #40 from infil00p/master
Clean Merge of Classic Render Mode
This commit is contained in:
commit
9078fe17b5
@ -2,4 +2,5 @@
|
||||
<phonegap>
|
||||
<access origin="http://127.0.0.1*"/>
|
||||
<log level="DEBUG"/>
|
||||
<render legacy="true" />
|
||||
</phonegap>
|
||||
|
@ -215,6 +215,8 @@ public class DroidGap extends PhonegapActivity {
|
||||
// when another application (activity) is started.
|
||||
protected boolean keepRunning = true;
|
||||
|
||||
private boolean classicRender;
|
||||
|
||||
/**
|
||||
* Called when the activity is first created.
|
||||
*
|
||||
@ -274,7 +276,19 @@ public class DroidGap extends PhonegapActivity {
|
||||
this.appView.setWebChromeClient(new GapClient(DroidGap.this));
|
||||
this.setWebViewClient(this.appView, new GapViewClient(this));
|
||||
|
||||
this.appView.setInitialScale(0);
|
||||
//14 is Ice Cream Sandwich!
|
||||
if(android.os.Build.VERSION.SDK_INT < 14 && this.classicRender)
|
||||
{
|
||||
//This hack fixes legacy PhoneGap apps
|
||||
//We should be using real pixels, not pretend pixels
|
||||
final float scale = getResources().getDisplayMetrics().density;
|
||||
int initialScale = (int) (scale * 100);
|
||||
this.appView.setInitialScale(initialScale);
|
||||
}
|
||||
else
|
||||
{
|
||||
this.appView.setInitialScale(0);
|
||||
}
|
||||
this.appView.setVerticalScrollBarEnabled(false);
|
||||
this.appView.requestFocusFromTouch();
|
||||
|
||||
@ -1747,6 +1761,14 @@ public class DroidGap extends PhonegapActivity {
|
||||
LOG.setLogLevel(level);
|
||||
}
|
||||
}
|
||||
else if(strNode.equals("render")) {
|
||||
String enabled = xml.getAttributeValue(null, "enabled");
|
||||
if(enabled != null)
|
||||
{
|
||||
this.classicRender = enabled.equals("true");
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
try {
|
||||
eventType = xml.next();
|
||||
|
Loading…
Reference in New Issue
Block a user