Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am noob in PhoneGap and I am trying to do an Android app.

My app works fine, but the resolution is very "high"

I found in the web some Java code to solve the problem, but it´s only works in the first screen.

This is de Java code:

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    //setContentView(R.layout.main);
    super.loadUrl("file:///android_asset/www/index.html");
    this.appView.addJavascriptInterface(this, "android");
    this.appView.setInitialScale(0); 


    //Obtenemos el tamaño de la pantalla
    Display display = ((WindowManager) getSystemService(Context.WINDOW_SERVICE)).getDefaultDisplay();
    int width = display.getWidth();
    int height = display.getHeight();

   // double globalScale = Math.ceil((width/orig_app_W) * 100);
    //ESTA INSTRUCCION ES LA QUE REALMENTE HACE EL REESCALADO 
    double globalScale = Math.ceil( ( width / orig_app_W ) * 70 );


    //Unas cuantas trazas para comprobar que vamos bien  ;-)
    Log.v( "ORIG_APP_W", " = " + orig_app_W );
    Log.v( "ORIG_APP_H", " = " + orig_app_H );
    Log.v( "width", " = " + width );
    Log.v( "this.appView.getMeasuredHeight()", " = " + height );
    Log.v( "globalScale", " = " + globalScale );
    Log.v( "this.appView.getScale()", "index=" + this.appView.getScale() );

    // Establecemos algunos parametros para el web view
    this.appView.getSettings().setBuiltInZoomControls( false );
    this.appView.getSettings().setSupportZoom( false );
    //this.appView.getSettings().setGeolocationEnabled( true );
    this.appView.getSettings().setLightTouchEnabled( true );
    this.appView.getSettings().setRenderPriority( RenderPriority.HIGH );

    this.appView.getSettings().setSupportZoom( true ); //Modify this 
    //this.appView.getSettings().setDefaultZoom(WebSettings.ZoomDensity.FAR);//Add this

    // Establecemos la escala
    this.appView.setInitialScale( (int)globalScale );        


}  

And this is the way to call another screen (HTML):

<a href="categorias.html" target="_top">

I need some orientation about this problem.

Thanks!!

share|improve this question

1 Answer

Use this in your all HTML file

<meta name="viewport" content="width=device-width; user-scalable=no" />

And to navigate to new HTML use this

navigator.app.loadUrl("file:///android_asset/www/something.html");
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.