Home
last modified time | relevance | path

Searched refs:layoutId (Results 1 – 21 of 21) sorted by relevance

/frameworks/base/core/java/android/transition/
DScene.java62 public static Scene getSceneForLayout(ViewGroup sceneRoot, int layoutId, Context context) { in getSceneForLayout() argument
69 Scene scene = scenes.get(layoutId); in getSceneForLayout()
73 scene = new Scene(sceneRoot, layoutId, context); in getSceneForLayout()
74 scenes.put(layoutId, scene); in getSceneForLayout()
108 private Scene(ViewGroup sceneRoot, int layoutId, Context context) { in Scene() argument
111 mLayoutId = layoutId; in Scene()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DPreviewInflater.java87 widgetView = appInflater.inflate(widgetInfo.layoutId, null, false); in inflateWidgetView()
113 int layoutId = metaData.getInt(META_DATA_KEYGUARD_LAYOUT); in getWidgetInfoFromMetaData() local
114 if (layoutId == 0) { in getWidgetInfoFromMetaData()
119 info.layoutId = layoutId; in getWidgetInfoFromMetaData()
148 int layoutId; field in PreviewInflater.WidgetInfo
/frameworks/base/startop/apps/test/src/
DLayoutInflationActivity.java30 int layoutId = savedInstanceState.getInt(LAYOUT_ID); in onCreate() local
31 String layoutName = getResources().getResourceEntryName(layoutId); in onCreate()
35 View view = inflater.inflate(layoutId, /*root=*/null); in onCreate()
/frameworks/base/core/java/android/appwidget/
DAppWidgetHostView.java425 int layoutId = remoteViews.getLayoutId(); in applyRemoteViews() local
428 if (content == null && layoutId == mLayoutId) { in applyRemoteViews()
449 mLayoutId = layoutId; in applyRemoteViews()
484 int layoutId = remoteViews.getLayoutId(); in inflateAsync() local
488 if (layoutId == mLayoutId && mView != null) { in inflateAsync()
493 new ViewApplyListener(remoteViews, layoutId, true), in inflateAsync()
503 new ViewApplyListener(remoteViews, layoutId, false), in inflateAsync()
513 public ViewApplyListener(RemoteViews views, int layoutId, boolean isReapply) { in ViewApplyListener() argument
515 mLayoutId = layoutId; in ViewApplyListener()
617 int layoutId = mInfo.initialLayout; in getDefaultView() local
[all …]
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
DBridgeActionBar.java57 int layoutId = 0; in BridgeActionBar() local
62 layoutId = context.getResourceId(layoutName.asReference(), 0); in BridgeActionBar()
64 if (layoutId == 0) { in BridgeActionBar()
81 mDecorContent = getInflater(context).inflate(layoutId, mEnclosingLayout, in BridgeActionBar()
/frameworks/base/apct-tests/perftests/core/src/android/widget/
DTextViewFontFamilyLayoutPerfTest.java52 public TextViewFontFamilyLayoutPerfTest(String key, int layoutId) { in TextViewFontFamilyLayoutPerfTest() argument
53 mLayoutId = layoutId; in TextViewFontFamilyLayoutPerfTest()
DTextViewAutoSizeLayoutPerfTest.java62 public TextViewAutoSizeLayoutPerfTest(String key, int layoutId) { in TextViewAutoSizeLayoutPerfTest() argument
63 mLayoutId = layoutId; in TextViewAutoSizeLayoutPerfTest()
DLayoutPerfTest.java68 public LayoutPerfTest(String key, int layoutId, int viewId) { in LayoutPerfTest() argument
70 mLayoutId = layoutId; in LayoutPerfTest()
/frameworks/base/packages/BackupRestoreConfirmation/src/com/android/backupconfirm/
DBackupRestoreConfirmation.java199 final int layoutId; in setViews() local
202 layoutId = R.layout.confirm_backup; in setViews()
205 layoutId = R.layout.confirm_restore; in setViews()
214 setContentView(layoutId); in setViews()
257 if (layoutId == R.layout.confirm_backup) { in setViews()
/frameworks/base/apct-tests/perftests/autofill/src/android/view/autofill/
DAbstractAutofillPerfTestCase.java57 protected AbstractAutofillPerfTestCase(int layoutId) { in AbstractAutofillPerfTestCase() argument
58 mLayoutId = layoutId; in AbstractAutofillPerfTestCase()
/frameworks/base/core/java/android/widget/
DRemoteViewsListAdapter.java106 int layoutId = mRemoteViewsList.get(position).getLayoutId(); in getItemViewType() local
107 return mViewTypes.indexOf(layoutId); in getItemViewType()
DRemoteViews.java2220 public RemoteViews(String packageName, int layoutId) {
2221 this(getApplicationInfo(packageName, UserHandle.myUserId()), layoutId);
2234 public RemoteViews(String packageName, int userId, @LayoutRes int layoutId) {
2235 this(getApplicationInfo(packageName, userId), layoutId);
2247 protected RemoteViews(ApplicationInfo application, @LayoutRes int layoutId) {
2249 mLayoutId = layoutId;
3334 public void setLightBackgroundLayoutId(@LayoutRes int layoutId) {
3335 mLightBackgroundLayoutId = layoutId;
DRemoteViewsAdapter.java1022 int layoutId = remoteViews.getLayoutId(); in updateRemoteViews() local
1027 viewTypeInRange = metaData.isViewTypeInRange(layoutId); in updateRemoteViews()
/frameworks/base/packages/CarSystemUI/src/com/android/systemui/car/notification/
DCarHeadsUpNotificationSystemContainer.java72 int layoutId = showOnBottom in CarHeadsUpNotificationSystemContainer() local
75 mWindow = (ViewGroup) LayoutInflater.from(context).inflate(layoutId, null, false); in CarHeadsUpNotificationSystemContainer()
/frameworks/base/core/java/com/android/internal/app/
DLocalePicker.java169 final int layoutId, final int fieldId) { in constructAdapter() argument
176 return new ArrayAdapter<LocaleInfo>(context, layoutId, fieldId, localeInfos) { in constructAdapter()
182 view = inflater.inflate(layoutId, parent, false); in constructAdapter()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardSecurityContainer.java477 int layoutId = getLayoutIdFor(securityMode); in getSecurityView() local
478 if (view == null && layoutId != 0) { in getSecurityView()
480 if (DEBUG) Log.v(TAG, "inflating id = " + layoutId); in getSecurityView()
482 .inflate(layoutId, mSecurityViewFlipper, false); in getSecurityView()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
DNotificationContentInflaterTest.java370 public AsyncFailRemoteView(String packageName, int layoutId) { in AsyncFailRemoteView() argument
371 super(packageName, layoutId); in AsyncFailRemoteView()
/frameworks/opt/car/setupwizard/library/main/src/com/android/car/setupwizardlib/
DCarSetupWizardLayout.java427 int layoutId = isFlat ? R.layout.flat_button : R.layout.primary_button; in createPrimaryToolbarButton() local
428 Button newPrimaryButton = (Button) inflate(getContext(), layoutId, null); in createPrimaryToolbarButton()
DCarSetupWizardBaseLayout.java428 int layoutId = isFlat ? R.layout.flat_button : R.layout.primary_button; in createPrimaryToolbarButton() local
429 Button newPrimaryButton = (Button) inflate(getContext(), layoutId, null); in createPrimaryToolbarButton()
/frameworks/base/core/java/android/app/
DNotification.java5317 private RemoteViews applyStandardTemplateWithActions(int layoutId, in applyStandardTemplateWithActions() argument
5319 return applyStandardTemplateWithActions(layoutId, mParams.reset().fillTextsFrom(this), in applyStandardTemplateWithActions()
5334 private RemoteViews applyStandardTemplateWithActions(int layoutId, in applyStandardTemplateWithActions() argument
5336 RemoteViews big = applyStandardTemplate(layoutId, p, result); in applyStandardTemplateWithActions()
6512 protected RemoteViews getStandardView(int layoutId) {
6514 return getStandardView(layoutId, p, null);
6527 protected RemoteViews getStandardView(int layoutId, StandardTemplateParams p,
6535 RemoteViews contentView = mBuilder.applyStandardTemplateWithActions(layoutId, p,
10867 public BuilderRemoteViews(ApplicationInfo appInfo, int layoutId) { in BuilderRemoteViews() argument
10868 super(appInfo, layoutId); in BuilderRemoteViews()
/frameworks/base/tools/aapt2/integration-tests/CommandTests/
Dandroid-28.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/net/ javax/ ...