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

/packages/apps/PackageInstaller/src/com/android/packageinstaller/
H A DPackageUtil.java70 * appSnippet view should include R.id.app_icon and R.id.app_name
85 * appSnippet view should include R.id.app_icon and R.id.app_name
109 * appSnippet view should include R.id.app_icon and R.id.app_name
118 View appSnippet = pContext.findViewById(snippetId);
119 ((ImageView)appSnippet.findViewById(R.id.app_icon)).setImageDrawable(as.icon);
120 ((TextView)appSnippet.findViewById(R.id.app_name)).setText(as.label);
121 return appSnippet;
/packages/apps/Settings/src/com/android/settings/applications/
H A DAppOpsDetails.java64 final View appSnippet = mRootView.findViewById(R.id.app_snippet);
67 InstalledAppDetails.setupAppSnippet(appSnippet, label, icon,
H A DInstalledAppDetails.java507 final View appSnippet = mHeader.findViewById(R.id.app_snippet);
509 setupAppSnippet(appSnippet, mAppEntry.label, mAppEntry.icon,
1000 public static void setupAppSnippet(View appSnippet, CharSequence label, Drawable icon, argument
1002 LayoutInflater.from(appSnippet.getContext()).inflate(R.layout.widget_text_views,
1003 (ViewGroup) appSnippet.findViewById(android.R.id.widget_frame));
1005 ImageView iconView = (ImageView) appSnippet.findViewById(android.R.id.icon);
1008 TextView labelView = (TextView) appSnippet.findViewById(android.R.id.title);
1011 TextView appVersion = (TextView) appSnippet.findViewById(R.id.widget_text1);
1016 appVersion.setText(appSnippet.getContext().getString(R.string.version_text,

Completed in 104 milliseconds