private void addTextSize(String staticText, int size, int wrap, int fill) {
   if (staticText == null) {
     if (size == wrap) {
       myTextFeedback.snap("wrap_content");
     } else if (size == fill) {
       myTextFeedback.snap("match_parent");
     } else {
       myTextFeedback.append(Integer.toString(size));
       myTextFeedback.dimension("dp");
     }
   } else {
     if (staticText.length() > 2) {
       int index = staticText.length() - 2;
       String dimension = staticText.substring(index);
       if (ArrayUtil.indexOf(ResourceRenderer.DIMENSIONS, dimension) != -1) {
         myTextFeedback.append(staticText.substring(0, index));
         myTextFeedback.dimension(dimension);
       } else {
         myTextFeedback.append(staticText);
       }
     } else {
       myTextFeedback.append(staticText);
     }
   }
 }