Changeset 14703


Ignore:
Timestamp:
04/22/13 16:28:25 (12 years ago)
Author:
cnpetrie
Message:

Scale image of greenland to more closely reflect scale of model on model page

Location:
issm/trunk-jpl/src/mobile/android/ISSM_APP
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/mobile/android/ISSM_APP/AndroidManifest.xml

    r14547 r14703  
    55    android:installLocation="preferExternal" >
    66    <uses-sdk
    7         android:minSdkVersion="10"
     7        android:minSdkVersion="11"
    88        android:targetSdkVersion="15" />
    99        <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
  • issm/trunk-jpl/src/mobile/android/ISSM_APP/src/gov/nasa/jpl/issm/ISSM.java

    r14700 r14703  
    99import android.app.Activity;
    1010import android.app.ProgressDialog;
     11import android.graphics.Matrix;
    1112import android.util.DisplayMetrics;
    1213import android.view.Gravity;
     
    174175                                mapName= "greenland";
    175176                                defaultMap.setImageResource(R.drawable.greenland_button);
     177                                defaultMap.setScaleX(1.12f);
     178                                defaultMap.setScaleY(0.92f);
    176179                                viewflipper.setInAnimation(inFromRightAnimation());
    177180                        viewflipper.setOutAnimation(outToLeftAnimation());
    178181                        viewflipper.showNext();
    179182                        defaultMap.setVisibility(View.VISIBLE);
     183                        defaultMap.setAlpha(1.0f);
    180184                        onSimulationScreen = true;
    181185                        //create FemModel in native code and return the size of the model
     
    190194                        viewflipper.setOutAnimation(outToLeftAnimation());
    191195                        viewflipper.showNext();
     196                        defaultMap.setAlpha(1.0f);
    192197                        defaultMap.setVisibility(View.VISIBLE);
    193198                        onSimulationScreen = true;
     
    228233                                System.out.println("Friction = " + friction );
    229234                                new CalculationTask().execute(friction,temperature);
    230                                 defaultMap.setImageResource(0);
    231235                        }
    232236                    });
     
    287291                        {
    288292                                dialog.dismiss();
    289                                 fadeImage();
     293                                if(defaultMap.getDrawable().isVisible() == true )
     294                                        fadeImage();
    290295                        }
    291296                }
     
    299304                                e.printStackTrace();
    300305                        }
    301                         if(result) drawFigure();
     306                        if(result)
     307                        {
     308                                drawFigure();
     309                        }
    302310                       
    303311                }
Note: See TracChangeset for help on using the changeset viewer.