Searched defs:layoutId (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/core/java/android/transition/
H A DScene.java37 private View mLayout; // alternative to layoutId
42 * <code>layoutId</code> parameter. If such a Scene has already been created for
44 * This caching of layoutId-based scenes enables sharing of common scenes
50 * @param layoutId The id of a standard layout resource file.
55 public static Scene getSceneForLayout(ViewGroup sceneRoot, int layoutId, Context context) { argument
62 Scene scene = scenes.get(layoutId);
66 scene = new Scene(sceneRoot, layoutId, context);
67 scenes.put(layoutId, scene);
89 * the hierarchy specified by the layoutId resource file.
91 * <p>This method is hidden because layoutId
101 Scene(ViewGroup sceneRoot, int layoutId, Context context) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DPreviewInflater.java72 widgetView = appInflater.inflate(widgetInfo.layoutId, null, false);
99 int layoutId = resolved.activityInfo.metaData.getInt(META_DATA_KEYGUARD_LAYOUT);
100 if (layoutId == 0) {
104 info.layoutId = layoutId;
137 int layoutId; field in class:PreviewInflater.WidgetInfo
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardActivityLauncher.java65 public int layoutId; field in class:KeyguardActivityLauncher.CameraWidgetInfo
93 int layoutId = resolved.activityInfo.metaData.getInt(META_DATA_KEYGUARD_LAYOUT);
94 if (layoutId == 0) {
99 info.layoutId = layoutId;
/frameworks/base/core/java/com/android/internal/app/
H A DLocalePicker.java159 final int layoutId, final int fieldId) {
166 return new ArrayAdapter<LocaleInfo>(context, layoutId, fieldId, localeInfos) {
172 view = inflater.inflate(layoutId, parent, false);
158 constructAdapter(Context context, final int layoutId, final int fieldId) argument
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DRootsFragment.java207 public Item(int layoutId) { argument
208 mLayoutId = layoutId;
/frameworks/base/core/java/android/widget/
H A DRemoteViews.java1646 * @param layoutId The id of the layout resource
1648 public RemoteViews(String packageName, int layoutId) { argument
1649 this(getApplicationInfo(packageName, UserHandle.myUserId()), layoutId);
1658 * @param layoutId The id of the layout resource.
1662 public RemoteViews(String packageName, int userId, int layoutId) { argument
1663 this(getApplicationInfo(packageName, userId), layoutId);
1671 * @param layoutId The id of the layout resource.
1675 protected RemoteViews(ApplicationInfo application, int layoutId) { argument
1677 mLayoutId = layoutId;
/frameworks/base/core/java/android/app/
H A DNotification.java2969 private RemoteViews applyStandardTemplateWithActions(int layoutId) { argument
2970 RemoteViews big = applyStandardTemplate(layoutId);
3587 protected RemoteViews getStandardView(int layoutId) { argument
3596 RemoteViews contentView = mBuilder.applyStandardTemplateWithActions(layoutId);
5087 public BuilderRemoteViews(ApplicationInfo appInfo, int layoutId) { argument
5088 super(appInfo, layoutId);

Completed in 175 milliseconds