OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:appsnippet
(Results
1 - 4
of
4
) sorted by null
/packages/apps/PackageInstaller/src/com/android/packageinstaller/
PackageUtil.java
89
*
appSnippet
view should include R.id.app_icon and R.id.app_name
108
*
appSnippet
view should include R.id.app_icon and R.id.app_name
115
public static View initSnippetForNewApp(Activity pContext,
AppSnippet
as,
117
View
appSnippet
= pContext.findViewById(snippetId);
118
((ImageView)
appSnippet
.findViewById(R.id.app_icon)).setImageDrawable(as.icon);
119
((TextView)
appSnippet
.findViewById(R.id.app_name)).setText(as.label);
120
return
appSnippet
;
136
static public class
AppSnippet
{
139
public
AppSnippet
(CharSequence label, Drawable icon) {
152
public static
AppSnippet
getAppSnippet
[
all
...]
InstallAppProgress.java
230
final PackageUtil.
AppSnippet
as;
232
as = new PackageUtil.
AppSnippet
(pm.getApplicationLabel(mAppInfo),
PackageInstallerActivity.java
493
final PackageUtil.
AppSnippet
as;
507
as = new PackageUtil.
AppSnippet
(mPm.getApplicationLabel(mPkgInfo.applicationInfo),
/packages/apps/Settings/src/com/android/settings/applications/
InstalledAppDetails.java
539
View
appSnippet
= mRootView.findViewById(R.id.app_snippet);
540
ImageView icon = (ImageView)
appSnippet
.findViewById(R.id.app_icon);
544
TextView label = (TextView)
appSnippet
.findViewById(R.id.app_name);
547
mAppVersion = (TextView)
appSnippet
.findViewById(R.id.app_size);
[
all
...]
Completed in 228 milliseconds