Home | History | Annotate | Download | only in media

Lines Matching refs:label

44     public void pushLabel(int icon, String label, Runnable action) {
46 mComponents.add(new Component(icon, label, action, 0));
68 public void changeLabel(String label) {
69 if (label == null || label.length() == 0)
73 pushLabel(component.icon, label, component.action);
114 Component(int icon, String label, Runnable action, float widthLeft) {
116 origString = label;
123 String label = "";
125 label = origString.substring(0, StringTexture.lengthToFit(sPathFormat.fontSize, widthLeft, typeface, origString));
126 if (label.length() != origString.length()) {
127 label += "...";
130 this.texture = new StringTexture(label, sPathFormat);
224 // Draw the label.