I found setting this.appView.setInitialScale(0); in App.java
works :)
package
com.exsyshost.android;
import android.os.Bundle;
import com.phonegap.*;
public class App extends DroidGap {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
super.setIntegerProperty("splashscreen", R.drawable.splash);
super.loadUrl("file:///android_asset/www/index.html");
this.appView.addJavascriptInterface(this, "android");
this.appView.setInitialScale(0);
this.appView.setBackgroundColor(0);
//
this.appView.setBackgroundDrawable(this.getResources().getDrawable(R.drawable.exsybg));