Home | History | Annotate | Download | only in packageinstaller

Lines Matching refs:label

101         CharSequence label = appInfo.loadLabel(pm);
104 ((TextView)appSnippet.findViewById(R.id.app_name)).setText(label);
122 ((TextView)appSnippet.findViewById(R.id.app_name)).setText(as.label);
140 CharSequence label;
142 public AppSnippet(CharSequence label, Drawable icon) {
143 this.label = label;
148 * Utility method to load application label
161 CharSequence label = null;
162 // Try to load the label from the package's resources. If an app has not explicitly
163 // specified any label, just use the package name.
166 label = res.getText(appInfo.labelRes);
170 if (label == null) {
171 label = (appInfo.nonLocalizedLabel != null) ?
186 return new PackageUtil.AppSnippet(label, icon);