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

  /packages/apps/Settings/src/com/android/settings/applications/
AppOpsDetails.java 66 final View appSnippet = mRootView.findViewById(R.id.app_snippet);
69 setupAppSnippet(appSnippet, label, icon,
200 void setupAppSnippet(View appSnippet, CharSequence label, Drawable icon,
202 LayoutInflater.from(appSnippet.getContext()).inflate(R.layout.widget_text_views,
203 appSnippet.findViewById(android.R.id.widget_frame));
205 ImageView iconView = appSnippet.findViewById(android.R.id.icon);
208 TextView labelView = appSnippet.findViewById(android.R.id.title);
211 TextView appVersion = appSnippet.findViewById(R.id.widget_text1);
216 appVersion.setText(appSnippet.getContext().getString(R.string.version_text,
InstalledAppDetails.java 608 final View appSnippet = mHeader.findViewById(R.id.entity_header);
614 EntityHeaderController.newInstance(activity, this, appSnippet)
    [all...]
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/
PackageUtil.java 75 * appSnippet view should include R.id.app_icon and R.id.app_name
90 * appSnippet view should include R.id.app_icon and R.id.app_name
114 * appSnippet view should include R.id.app_icon and R.id.app_name
122 @NonNull AppSnippet as, int snippetId) {
123 View appSnippet = pContext.findViewById(snippetId);
125 ((ImageView) appSnippet.findViewById(R.id.app_icon)).setImageDrawable(as.icon);
127 ((TextView)appSnippet.findViewById(R.id.app_name)).setText(as.label);
128 return appSnippet;
131 static public class AppSnippet {
134 public AppSnippet(@NonNull CharSequence label, @Nullable Drawable icon)
    [all...]
  /packages/apps/Settings/src/com/android/settings/fuelgauge/
AdvancedPowerUsageDetail.java 231 final View appSnippet = mHeaderPreference.findViewById(R.id.entity_header);
235 .newInstance(context, this, appSnippet)

Completed in 100 milliseconds