Home | History | Annotate | Download | only in packageinstaller

Lines Matching full:appsnippet

93      * appSnippet view should include R.id.app_icon and R.id.app_name
112 * appSnippet view should include R.id.app_icon and R.id.app_name
119 public static View initSnippetForNewApp(Activity pContext, AppSnippet as,
121 View appSnippet = pContext.findViewById(snippetId);
122 ((ImageView)appSnippet.findViewById(R.id.app_icon)).setImageDrawable(as.icon);
123 ((TextView)appSnippet.findViewById(R.id.app_name)).setText(as.label);
124 return appSnippet;
140 static public class AppSnippet {
143 public AppSnippet(CharSequence label, Drawable icon) {
156 public static AppSnippet getAppSnippet(
188 return new PackageUtil.AppSnippet(label, icon);