Home
last modified time | relevance | path

Searched refs:appSnippet (Results 1 – 3 of 3) sorted by relevance

/packages/apps/PackageInstaller/src/com/android/packageinstaller/
DPackageUtil.java118 View appSnippet = pContext.findViewById(snippetId); in initSnippetForNewApp() local
119 ((ImageView)appSnippet.findViewById(R.id.app_icon)).setImageDrawable(as.icon); in initSnippetForNewApp()
120 ((TextView)appSnippet.findViewById(R.id.app_name)).setText(as.label); in initSnippetForNewApp()
121 return appSnippet; in initSnippetForNewApp()
/packages/apps/Settings/src/com/android/settings/applications/
DInstalledAppDetails.java502 final View appSnippet = mHeader.findViewById(R.id.app_snippet); in setAppLabelAndIcon() local
504 setupAppSnippet(appSnippet, mAppEntry.label, mAppEntry.icon, in setAppLabelAndIcon()
993 public static void setupAppSnippet(View appSnippet, CharSequence label, Drawable icon,
995 LayoutInflater.from(appSnippet.getContext()).inflate(R.layout.widget_text_views,
996 (ViewGroup) appSnippet.findViewById(android.R.id.widget_frame));
998 ImageView iconView = (ImageView) appSnippet.findViewById(android.R.id.icon);
1001 TextView labelView = (TextView) appSnippet.findViewById(android.R.id.title);
1004 TextView appVersion = (TextView) appSnippet.findViewById(R.id.widget_text1);
1009 appVersion.setText(appSnippet.getContext().getString(R.string.version_text,
DAppOpsDetails.java64 final View appSnippet = mRootView.findViewById(R.id.app_snippet); in setAppLabelAndIcon() local
67 InstalledAppDetails.setupAppSnippet(appSnippet, label, icon, in setAppLabelAndIcon()