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
90
*
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
116
public static View initSnippetForNewApp(Activity pContext,
AppSnippet
as,
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
;
137
static public class
AppSnippet
{
140
public
AppSnippet
(CharSequence label, Drawable icon) {
152
public static
AppSnippet
getAppSnippet(Activity pContext, ApplicationInfo appInfo
[
all
...]
InstallAppProgress.java
223
PackageUtil.
AppSnippet
as = PackageUtil.getAppSnippet(this, mAppInfo,
PackageInstallerActivity.java
291
PackageUtil.
AppSnippet
as = PackageUtil.getAppSnippet(this,
/packages/apps/Settings/src/com/android/settings/applications/
InstalledAppDetails.java
377
View
appSnippet
= mRootView.findViewById(R.id.app_snippet);
378
ImageView icon = (ImageView)
appSnippet
.findViewById(R.id.app_icon);
382
TextView label = (TextView)
appSnippet
.findViewById(R.id.app_name);
385
mAppVersion = (TextView)
appSnippet
.findViewById(R.id.app_size);
[
all
...]
Completed in 174 milliseconds