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

/frameworks/base/core/java/android/transition/
H A DScene.java37 private ViewGroup mLayout; // alternative to layoutId
43 * <code>layoutId</code> parameter. If such a Scene has already been created,
44 * that same Scene will be returned. This caching of layoutId-based scenes enables
50 * @param layoutId The id of a standard layout resource file.
55 public static Scene getSceneForLayout(ViewGroup sceneRoot, int layoutId, Context context) { argument
61 Scene scene = scenes.get(layoutId);
65 scene = new Scene(sceneRoot, layoutId, context);
66 scenes.put(layoutId, scene);
88 * the hierarchy specified by the layoutId resource file.
90 * <p>This method is hidden because layoutId
100 Scene(ViewGroup sceneRoot, int layoutId, Context context) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DQuickSettingsBasicTile.java41 public QuickSettingsBasicTile(Context context, AttributeSet attrs, int layoutId) { argument
49 addView(LayoutInflater.from(context).inflate(layoutId, null),
58 void setContent(int layoutId, LayoutInflater inflater) { argument
H A DQuickSettingsTileView.java52 void setContent(int layoutId, LayoutInflater inflater) { argument
53 mContentLayoutId = layoutId;
54 inflater.inflate(layoutId, this);
62 Log.e(TAG, "Not reinflating content: No layoutId set");
/frameworks/base/core/java/com/android/internal/app/
H A DLocalePicker.java103 final int layoutId, final int fieldId) {
104 return constructAdapter(context, layoutId, fieldId, false /* disable pseudolocales */);
108 final int layoutId, final int fieldId, final boolean isInDeveloperMode) {
197 return new ArrayAdapter<LocaleInfo>(context, layoutId, fieldId, localeInfos) {
203 view = inflater.inflate(layoutId, parent, false);
102 constructAdapter(Context context, final int layoutId, final int fieldId) argument
107 constructAdapter(Context context, final int layoutId, final int fieldId, final boolean isInDeveloperMode) argument
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardActivityLauncher.java62 public int layoutId; field in class:KeyguardActivityLauncher.CameraWidgetInfo
90 int layoutId = resolved.activityInfo.metaData.getInt(META_DATA_KEYGUARD_LAYOUT);
91 if (layoutId == 0) {
96 info.layoutId = layoutId;
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DRootsFragment.java173 public Item(int layoutId) { argument
174 mLayoutId = layoutId;
/frameworks/base/core/java/android/app/
H A DNotification.java1729 private RemoteViews applyStandardTemplateWithActions(int layoutId) { argument
1730 RemoteViews big = applyStandardTemplate(layoutId, false);
1942 protected RemoteViews getStandardView(int layoutId) { argument
1949 RemoteViews contentView = mBuilder.applyStandardTemplateWithActions(layoutId);
/frameworks/base/core/java/android/widget/
H A DRemoteViews.java1565 * @param layoutId The id of the layout resource
1567 public RemoteViews(String packageName, int layoutId) { argument
1569 mLayoutId = layoutId;

Completed in 1770 milliseconds