Changeset 14703
- Timestamp:
- 04/22/13 16:28:25 (12 years ago)
- 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 5 5 android:installLocation="preferExternal" > 6 6 <uses-sdk 7 android:minSdkVersion="1 0"7 android:minSdkVersion="11" 8 8 android:targetSdkVersion="15" /> 9 9 <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 9 9 import android.app.Activity; 10 10 import android.app.ProgressDialog; 11 import android.graphics.Matrix; 11 12 import android.util.DisplayMetrics; 12 13 import android.view.Gravity; … … 174 175 mapName= "greenland"; 175 176 defaultMap.setImageResource(R.drawable.greenland_button); 177 defaultMap.setScaleX(1.12f); 178 defaultMap.setScaleY(0.92f); 176 179 viewflipper.setInAnimation(inFromRightAnimation()); 177 180 viewflipper.setOutAnimation(outToLeftAnimation()); 178 181 viewflipper.showNext(); 179 182 defaultMap.setVisibility(View.VISIBLE); 183 defaultMap.setAlpha(1.0f); 180 184 onSimulationScreen = true; 181 185 //create FemModel in native code and return the size of the model … … 190 194 viewflipper.setOutAnimation(outToLeftAnimation()); 191 195 viewflipper.showNext(); 196 defaultMap.setAlpha(1.0f); 192 197 defaultMap.setVisibility(View.VISIBLE); 193 198 onSimulationScreen = true; … … 228 233 System.out.println("Friction = " + friction ); 229 234 new CalculationTask().execute(friction,temperature); 230 defaultMap.setImageResource(0);231 235 } 232 236 }); … … 287 291 { 288 292 dialog.dismiss(); 289 fadeImage(); 293 if(defaultMap.getDrawable().isVisible() == true ) 294 fadeImage(); 290 295 } 291 296 } … … 299 304 e.printStackTrace(); 300 305 } 301 if(result) drawFigure(); 306 if(result) 307 { 308 drawFigure(); 309 } 302 310 303 311 }
Note:
See TracChangeset
for help on using the changeset viewer.