Home
last modified time | relevance | path

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

/packages/apps/Settings/src/com/android/settings/applications/
DAppOpsDetails.java63 final View appSnippet = mRootView.findViewById(R.id.app_snippet); in setAppLabelAndIcon() local
64appSnippet.setPaddingRelative(0, appSnippet.getPaddingTop(), 0, appSnippet.getPaddingBottom()); in setAppLabelAndIcon()
66 ImageView icon = (ImageView) appSnippet.findViewById(R.id.app_icon); in setAppLabelAndIcon()
69 TextView label = (TextView) appSnippet.findViewById(R.id.app_name); in setAppLabelAndIcon()
72 mAppVersion = (TextView) appSnippet.findViewById(R.id.app_size); in setAppLabelAndIcon()
DInstalledAppDetails.java572 final View appSnippet = mRootView.findViewById(R.id.app_snippet); in setAppLabelAndIcon() local
573appSnippet.setPaddingRelative(0, appSnippet.getPaddingTop(), 0, appSnippet.getPaddingBottom()); in setAppLabelAndIcon()
575 ImageView icon = (ImageView) appSnippet.findViewById(R.id.app_icon); in setAppLabelAndIcon()
579 TextView label = (TextView) appSnippet.findViewById(R.id.app_name); in setAppLabelAndIcon()
582 mAppVersion = (TextView) appSnippet.findViewById(R.id.app_size); in setAppLabelAndIcon()
/packages/apps/PackageInstaller/src/com/android/packageinstaller/
DPackageUtil.java133 View appSnippet = pContext.findViewById(snippetId); in initSnippetForNewApp() local
134 ((ImageView)appSnippet.findViewById(R.id.app_icon)).setImageDrawable(as.icon); in initSnippetForNewApp()
135 ((TextView)appSnippet.findViewById(R.id.app_name)).setText(as.label); in initSnippetForNewApp()
136 return appSnippet; in initSnippetForNewApp()