Lines Matching refs:label
84 public static View initSnippet(View snippetView, CharSequence label, Drawable icon) {
86 ((TextView)snippetView.findViewById(R.id.app_name)).setText(label);
123 ((TextView)appSnippet.findViewById(R.id.app_name)).setText(as.label);
141 CharSequence label;
143 public AppSnippet(CharSequence label, Drawable icon) {
144 this.label = label;
150 * Utility method to load application label
163 CharSequence label = null;
164 // Try to load the label from the package's resources. If an app has not explicitly
165 // specified any label, just use the package name.
168 label = res.getText(appInfo.labelRes);
172 if (label == null) {
173 label = (appInfo.nonLocalizedLabel != null) ?
188 return new PackageUtil.AppSnippet(label, icon);