Пример #1
0
 boolean textZoomOut() {
   WebSettings settings = getSettings();
   int newZoom = settings.getTextZoom() - 20;
   if (newZoom >= 40) {
     settings.setTextZoom(newZoom);
     saveTextZoomPref();
     return true;
   } else {
     return false;
   }
 }
Пример #2
0
 void resetTextZoom() {
   getSettings().setTextZoom(100);
   saveTextZoomPref();
 }