HomeSort by relevance Sort by last modified time
    Searched refs:appSnippet (Results 1 - 3 of 3) sorted by null

  /packages/apps/Settings/src/com/android/settings/applications/
AppOpsDetails.java 63 final View appSnippet = mRootView.findViewById(R.id.app_snippet);
64 appSnippet.setPaddingRelative(0, appSnippet.getPaddingTop(), 0, appSnippet.getPaddingBottom());
66 ImageView icon = (ImageView) appSnippet.findViewById(R.id.app_icon);
69 TextView label = (TextView) appSnippet.findViewById(R.id.app_name);
72 mAppVersion = (TextView) appSnippet.findViewById(R.id.app_size);
InstalledAppDetails.java 572 final View appSnippet = mRootView.findViewById(R.id.app_snippet);
573 appSnippet.setPaddingRelative(0, appSnippet.getPaddingTop(), 0, appSnippet.getPaddingBottom());
575 ImageView icon = (ImageView) appSnippet.findViewById(R.id.app_icon);
579 TextView label = (TextView) appSnippet.findViewById(R.id.app_name);
582 mAppVersion = (TextView) appSnippet.findViewById(R.id.app_size);
    [all...]
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/
PackageUtil.java 85 * appSnippet view should include R.id.app_icon and R.id.app_name
100 * appSnippet view should include R.id.app_icon and R.id.app_name
124 * appSnippet view should include R.id.app_icon and R.id.app_name
131 public static View initSnippetForNewApp(Activity pContext, AppSnippet as,
133 View appSnippet = pContext.findViewById(snippetId);
134 ((ImageView)appSnippet.findViewById(R.id.app_icon)).setImageDrawable(as.icon);
135 ((TextView)appSnippet.findViewById(R.id.app_name)).setText(as.label);
136 return appSnippet;
152 static public class AppSnippet {
155 public AppSnippet(CharSequence label, Drawable icon)
    [all...]

Completed in 76 milliseconds