Home | History | Annotate | Download | only in packageinstaller

Lines Matching full:appsnippet

89      * appSnippet view should include R.id.app_icon and R.id.app_name
108 * appSnippet view should include R.id.app_icon and R.id.app_name
115 public static View initSnippetForNewApp(Activity pContext, AppSnippet as,
117 View appSnippet = pContext.findViewById(snippetId);
118 ((ImageView)appSnippet.findViewById(R.id.app_icon)).setImageDrawable(as.icon);
119 ((TextView)appSnippet.findViewById(R.id.app_name)).setText(as.label);
120 return appSnippet;
136 static public class AppSnippet {
139 public AppSnippet(CharSequence label, Drawable icon) {
152 public static AppSnippet getAppSnippet(
184 return new PackageUtil.AppSnippet(label, icon);