Home | History | Annotate | Download | only in contacts

Lines Matching refs:LABEL

61         // Try finding the type and label for this mimetype
67 // Reset to phone mimetype so we generate a label for SMS case
70 colLabel = cursor.getColumnIndex(Phone.LABEL);
73 colLabel = cursor.getColumnIndex(Email.LABEL);
76 colLabel = cursor.getColumnIndex(StructuredPostal.LABEL);
79 colLabel = cursor.getColumnIndex(Organization.LABEL);
85 final CharSequence label = cursor.getString(colLabel);
87 return getDisplayLabel(context, mimeType, type, label);
91 CharSequence label) {
114 // Can't return display label for given mimetype.
126 if (!TextUtils.isEmpty(label)) {
127 display = label;
368 * @param label The label to display in the tab indicator. If null, not label will be displayed.
372 public static View createTabIndicatorView(ViewGroup parent, CharSequence label, Drawable icon) {
379 tv.setText(label);