Searched refs:layoutId (Results 1 - 14 of 14) sorted by relevance

/frameworks/base/core/java/android/transition/
H A DScene.java37 private ViewGroup 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/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.java53 void setContent(int layoutId, LayoutInflater inflater) { argument
54 mContentLayoutId = layoutId;
55 inflater.inflate(layoutId, this);
63 Log.e(TAG, "Not reinflating content: No layoutId set");
/frameworks/base/core/java/android/widget/
H A DRemoteViewsListAdapter.java106 int layoutId = mRemoteViewsList.get(position).getLayoutId();
107 return mViewTypes.indexOf(layoutId);
H A DRemoteViewsAdapter.java1055 int layoutId = remoteViews.getLayoutId();
1060 viewTypeInRange = metaData.isViewTypeInRange(layoutId);
H A DRemoteViews.java1565 * @param layoutId The id of the layout resource
1567 public RemoteViews(String packageName, int layoutId) { argument
1569 mLayoutId = layoutId;
/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/BackupRestoreConfirmation/src/com/android/backupconfirm/
H A DBackupRestoreConfirmation.java137 final int layoutId;
140 layoutId = R.layout.confirm_backup;
143 layoutId = R.layout.confirm_restore;
171 setContentView(layoutId);
189 if (layoutId == R.layout.confirm_backup) {
201 if (layoutId == R.layout.confirm_backup) {
/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;
H A DCameraWidgetFrame.java180 return widgetInfo.layoutId > 0 ?
195 widgetView = cameraInflater.inflate(widgetInfo.layoutId, null, false);
H A DKeyguardHostView.java945 int layoutId = getLayoutIdFor(securityMode);
946 if (view == null && layoutId != 0) {
948 if (DEBUG) Log.v(TAG, "inflating id = " + layoutId);
949 View v = inflater.inflate(layoutId, mSecurityViewContainer, false);
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetHostView.java384 int layoutId = remoteViews.getLayoutId();
388 if (content == null && layoutId == mLayoutId) {
409 mLayoutId = layoutId;
561 int layoutId = mInfo.initialLayout;
568 layoutId = kgLayoutId == 0 ? layoutId : kgLayoutId;
571 defaultView = inflater.inflate(layoutId, this, false);
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DRootsFragment.java206 public Item(int layoutId) { argument
207 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);

Completed in 1011 milliseconds