clevertap-react-native 0.7.0 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/android/.gradle/6.1.1/executionHistory/executionHistory.bin +0 -0
- package/android/.gradle/6.1.1/executionHistory/executionHistory.lock +0 -0
- package/android/.gradle/6.1.1/fileContent/fileContent.lock +0 -0
- package/android/.gradle/6.1.1/fileHashes/fileHashes.bin +0 -0
- package/android/.gradle/6.1.1/fileHashes/fileHashes.lock +0 -0
- package/android/.gradle/6.1.1/fileHashes/resourceHashesCache.bin +0 -0
- package/android/.gradle/6.1.1/javaCompile/classAnalysis.bin +0 -0
- package/android/.gradle/6.1.1/javaCompile/jarAnalysis.bin +0 -0
- package/android/.gradle/6.1.1/javaCompile/javaCompile.lock +0 -0
- package/android/.gradle/6.1.1/javaCompile/taskHistory.bin +0 -0
- package/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/android/.gradle/buildOutputCleanup/cache.properties +1 -1
- package/android/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
- package/android/.gradle/checksums/checksums.lock +0 -0
- package/android/.gradle/checksums/md5-checksums.bin +0 -0
- package/android/.gradle/checksums/sha1-checksums.bin +0 -0
- package/android/android.iml +5 -86
- package/android/build/generated/source/buildConfig/debug/com/clevertap/react/BuildConfig.java +2 -2
- package/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml +3 -3
- package/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output.json +2 -2
- package/android/build/intermediates/aar_main_jar/debug/classes.jar +0 -0
- package/android/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/R.jar +0 -0
- package/android/build/intermediates/compile_symbol_list/debug/R.txt +1785 -374
- package/android/build/intermediates/incremental/packageDebugResources/compile-file-map.properties +1 -1
- package/android/build/intermediates/javac/debug/classes/com/clevertap/react/BuildConfig.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/clevertap/react/CleverTapApplication$1$1.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/clevertap/react/CleverTapApplication$1.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/clevertap/react/CleverTapApplication.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/clevertap/react/CleverTapModule$1.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/clevertap/react/CleverTapModule$2.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/clevertap/react/CleverTapModule$ErrorMessages.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/clevertap/react/CleverTapModule$InBoxMessages.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/clevertap/react/CleverTapModule.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/clevertap/react/CleverTapUtils.class +0 -0
- package/android/build/intermediates/library_manifest/debug/AndroidManifest.xml +3 -3
- package/android/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt +3 -3
- package/android/build/intermediates/merged_manifests/debug/output.json +2 -2
- package/android/build/intermediates/symbol_list_with_package_name/debug/package-aware-r.txt +772 -40
- package/android/build/outputs/aar/android-debug.aar +0 -0
- package/android/build.gradle +3 -3
- package/android/src/main/java/com/clevertap/react/CleverTapApplication.java +79 -0
- package/android/src/main/java/com/clevertap/react/CleverTapModule.java +2 -22
- package/android/src/main/java/com/clevertap/react/CleverTapUtils.java +36 -0
- package/clevertap-react-native.podspec +2 -2
- package/docs/install.md +2 -2
- package/docs/integration.md +15 -3
- package/docs/usage.md +6 -0
- package/index.d.ts +2 -1
- package/index.js +2 -1
- package/ios/CleverTapReact/CleverTapSDK.framework.zip +0 -0
- package/package.json +3 -3
|
@@ -31,6 +31,7 @@ anim design_snackbar_in
|
|
|
31
31
|
anim design_snackbar_out
|
|
32
32
|
anim fade_in
|
|
33
33
|
anim fade_out
|
|
34
|
+
anim fragment_fast_out_extra_slow_in
|
|
34
35
|
anim mtrl_bottom_sheet_slide_in
|
|
35
36
|
anim mtrl_bottom_sheet_slide_out
|
|
36
37
|
anim mtrl_card_lowers_interpolator
|
|
@@ -39,11 +40,22 @@ anim slide_up
|
|
|
39
40
|
animator design_appbar_state_list_animator
|
|
40
41
|
animator design_fab_hide_motion_spec
|
|
41
42
|
animator design_fab_show_motion_spec
|
|
43
|
+
animator fragment_close_enter
|
|
44
|
+
animator fragment_close_exit
|
|
45
|
+
animator fragment_fade_enter
|
|
46
|
+
animator fragment_fade_exit
|
|
47
|
+
animator fragment_open_enter
|
|
48
|
+
animator fragment_open_exit
|
|
49
|
+
animator linear_indeterminate_line1_head_interpolator
|
|
50
|
+
animator linear_indeterminate_line1_tail_interpolator
|
|
51
|
+
animator linear_indeterminate_line2_head_interpolator
|
|
52
|
+
animator linear_indeterminate_line2_tail_interpolator
|
|
42
53
|
animator mtrl_btn_state_list_anim
|
|
43
54
|
animator mtrl_btn_unelevated_state_list_anim
|
|
44
55
|
animator mtrl_card_state_list_anim
|
|
45
56
|
animator mtrl_chip_state_list_anim
|
|
46
|
-
animator
|
|
57
|
+
animator mtrl_extended_fab_change_size_collapse_motion_spec
|
|
58
|
+
animator mtrl_extended_fab_change_size_expand_motion_spec
|
|
47
59
|
animator mtrl_extended_fab_hide_motion_spec
|
|
48
60
|
animator mtrl_extended_fab_show_motion_spec
|
|
49
61
|
animator mtrl_extended_fab_state_list_animator
|
|
@@ -51,6 +63,8 @@ animator mtrl_fab_hide_motion_spec
|
|
|
51
63
|
animator mtrl_fab_show_motion_spec
|
|
52
64
|
animator mtrl_fab_transformation_sheet_collapse_spec
|
|
53
65
|
animator mtrl_fab_transformation_sheet_expand_spec
|
|
66
|
+
array exo_playback_speeds
|
|
67
|
+
array exo_speed_multiplied_by_100
|
|
54
68
|
attr actionBarDivider
|
|
55
69
|
attr actionBarItemBackground
|
|
56
70
|
attr actionBarPopupTheme
|
|
@@ -69,6 +83,7 @@ attr actionMenuTextAppearance
|
|
|
69
83
|
attr actionMenuTextColor
|
|
70
84
|
attr actionModeBackground
|
|
71
85
|
attr actionModeCloseButtonStyle
|
|
86
|
+
attr actionModeCloseContentDescription
|
|
72
87
|
attr actionModeCloseDrawable
|
|
73
88
|
attr actionModeCopyDrawable
|
|
74
89
|
attr actionModeCutDrawable
|
|
@@ -79,6 +94,7 @@ attr actionModeSelectAllDrawable
|
|
|
79
94
|
attr actionModeShareDrawable
|
|
80
95
|
attr actionModeSplitBackground
|
|
81
96
|
attr actionModeStyle
|
|
97
|
+
attr actionModeTheme
|
|
82
98
|
attr actionModeWebSearchDrawable
|
|
83
99
|
attr actionOverflowButtonStyle
|
|
84
100
|
attr actionOverflowMenuStyle
|
|
@@ -98,16 +114,23 @@ attr alertDialogTheme
|
|
|
98
114
|
attr allowStacking
|
|
99
115
|
attr alpha
|
|
100
116
|
attr alphabeticModifiers
|
|
117
|
+
attr altSrc
|
|
118
|
+
attr animate_relativeTo
|
|
101
119
|
attr animationMode
|
|
120
|
+
attr animation_enabled
|
|
102
121
|
attr appBarLayoutStyle
|
|
122
|
+
attr applyMotionScene
|
|
123
|
+
attr arcMode
|
|
103
124
|
attr arrowHeadLength
|
|
104
125
|
attr arrowShaftLength
|
|
126
|
+
attr attributeName
|
|
105
127
|
attr autoCompleteTextViewStyle
|
|
106
128
|
attr autoSizeMaxTextSize
|
|
107
129
|
attr autoSizeMinTextSize
|
|
108
130
|
attr autoSizePresetSizes
|
|
109
131
|
attr autoSizeStepGranularity
|
|
110
132
|
attr autoSizeTextType
|
|
133
|
+
attr autoTransition
|
|
111
134
|
attr auto_show
|
|
112
135
|
attr background
|
|
113
136
|
attr backgroundColor
|
|
@@ -125,7 +148,11 @@ attr badgeGravity
|
|
|
125
148
|
attr badgeStyle
|
|
126
149
|
attr badgeTextColor
|
|
127
150
|
attr barLength
|
|
151
|
+
attr bar_gravity
|
|
128
152
|
attr bar_height
|
|
153
|
+
attr barrierAllowsGoneWidgets
|
|
154
|
+
attr barrierDirection
|
|
155
|
+
attr barrierMargin
|
|
129
156
|
attr behavior_autoHide
|
|
130
157
|
attr behavior_autoShrink
|
|
131
158
|
attr behavior_draggable
|
|
@@ -154,6 +181,7 @@ attr boxStrokeColor
|
|
|
154
181
|
attr boxStrokeErrorColor
|
|
155
182
|
attr boxStrokeWidth
|
|
156
183
|
attr boxStrokeWidthFocused
|
|
184
|
+
attr brightness
|
|
157
185
|
attr buffered_color
|
|
158
186
|
attr buttonBarButtonStyle
|
|
159
187
|
attr buttonBarNegativeButtonStyle
|
|
@@ -177,11 +205,14 @@ attr cardMaxElevation
|
|
|
177
205
|
attr cardPreventCornerOverlap
|
|
178
206
|
attr cardUseCompatPadding
|
|
179
207
|
attr cardViewStyle
|
|
208
|
+
attr chainUseRtl
|
|
180
209
|
attr checkboxStyle
|
|
181
210
|
attr checkedButton
|
|
182
211
|
attr checkedChip
|
|
183
212
|
attr checkedIcon
|
|
184
213
|
attr checkedIconEnabled
|
|
214
|
+
attr checkedIconMargin
|
|
215
|
+
attr checkedIconSize
|
|
185
216
|
attr checkedIconTint
|
|
186
217
|
attr checkedIconVisible
|
|
187
218
|
attr checkedTextViewStyle
|
|
@@ -206,6 +237,13 @@ attr chipStrokeWidth
|
|
|
206
237
|
attr chipStyle
|
|
207
238
|
attr chipSurfaceColor
|
|
208
239
|
attr circleCrop
|
|
240
|
+
attr circleRadius
|
|
241
|
+
attr circularProgressIndicatorStyle
|
|
242
|
+
attr clickAction
|
|
243
|
+
attr clockFaceBackgroundColor
|
|
244
|
+
attr clockHandColor
|
|
245
|
+
attr clockIcon
|
|
246
|
+
attr clockNumberTextColor
|
|
209
247
|
attr closeIcon
|
|
210
248
|
attr closeIconEnabled
|
|
211
249
|
attr closeIconEndPadding
|
|
@@ -216,8 +254,10 @@ attr closeIconVisible
|
|
|
216
254
|
attr closeItemLayout
|
|
217
255
|
attr collapseContentDescription
|
|
218
256
|
attr collapseIcon
|
|
257
|
+
attr collapsedSize
|
|
219
258
|
attr collapsedTitleGravity
|
|
220
259
|
attr collapsedTitleTextAppearance
|
|
260
|
+
attr collapsingToolbarLayoutStyle
|
|
221
261
|
attr color
|
|
222
262
|
attr colorAccent
|
|
223
263
|
attr colorBackgroundFloating
|
|
@@ -242,6 +282,12 @@ attr colorSecondaryVariant
|
|
|
242
282
|
attr colorSurface
|
|
243
283
|
attr colorSwitchThumbNormal
|
|
244
284
|
attr commitIcon
|
|
285
|
+
attr constraintSet
|
|
286
|
+
attr constraintSetEnd
|
|
287
|
+
attr constraintSetStart
|
|
288
|
+
attr constraint_referenced_ids
|
|
289
|
+
attr constraints
|
|
290
|
+
attr content
|
|
245
291
|
attr contentDescription
|
|
246
292
|
attr contentInsetEnd
|
|
247
293
|
attr contentInsetEndWithActions
|
|
@@ -251,10 +297,13 @@ attr contentInsetStart
|
|
|
251
297
|
attr contentInsetStartWithNavigation
|
|
252
298
|
attr contentPadding
|
|
253
299
|
attr contentPaddingBottom
|
|
300
|
+
attr contentPaddingEnd
|
|
254
301
|
attr contentPaddingLeft
|
|
255
302
|
attr contentPaddingRight
|
|
303
|
+
attr contentPaddingStart
|
|
256
304
|
attr contentPaddingTop
|
|
257
305
|
attr contentScrim
|
|
306
|
+
attr contrast
|
|
258
307
|
attr controlBackground
|
|
259
308
|
attr controller_layout_id
|
|
260
309
|
attr coordinatorLayoutStyle
|
|
@@ -275,13 +324,29 @@ attr counterOverflowTextAppearance
|
|
|
275
324
|
attr counterOverflowTextColor
|
|
276
325
|
attr counterTextAppearance
|
|
277
326
|
attr counterTextColor
|
|
327
|
+
attr crossfade
|
|
328
|
+
attr currentState
|
|
329
|
+
attr curveFit
|
|
330
|
+
attr customBoolean
|
|
331
|
+
attr customColorDrawableValue
|
|
332
|
+
attr customColorValue
|
|
333
|
+
attr customDimension
|
|
334
|
+
attr customFloatValue
|
|
335
|
+
attr customIntegerValue
|
|
278
336
|
attr customNavigationLayout
|
|
337
|
+
attr customPixelDimension
|
|
338
|
+
attr customStringValue
|
|
279
339
|
attr dayInvalidStyle
|
|
280
340
|
attr daySelectedStyle
|
|
281
341
|
attr dayStyle
|
|
282
342
|
attr dayTodayStyle
|
|
343
|
+
attr defaultDuration
|
|
283
344
|
attr defaultQueryHint
|
|
345
|
+
attr defaultState
|
|
284
346
|
attr default_artwork
|
|
347
|
+
attr deltaPolarAngle
|
|
348
|
+
attr deltaPolarRadius
|
|
349
|
+
attr deriveConstraintsFrom
|
|
285
350
|
attr dialogCornerRadius
|
|
286
351
|
attr dialogPreferredPadding
|
|
287
352
|
attr dialogTheme
|
|
@@ -290,6 +355,10 @@ attr divider
|
|
|
290
355
|
attr dividerHorizontal
|
|
291
356
|
attr dividerPadding
|
|
292
357
|
attr dividerVertical
|
|
358
|
+
attr dragDirection
|
|
359
|
+
attr dragScale
|
|
360
|
+
attr dragThreshold
|
|
361
|
+
attr drawPath
|
|
293
362
|
attr drawableBottomCompat
|
|
294
363
|
attr drawableEndCompat
|
|
295
364
|
attr drawableLeftCompat
|
|
@@ -302,12 +371,14 @@ attr drawableTopCompat
|
|
|
302
371
|
attr drawerArrowStyle
|
|
303
372
|
attr dropDownListViewStyle
|
|
304
373
|
attr dropdownListPreferredItemHeight
|
|
374
|
+
attr duration
|
|
305
375
|
attr editTextBackground
|
|
306
376
|
attr editTextColor
|
|
307
377
|
attr editTextStyle
|
|
308
378
|
attr elevation
|
|
309
379
|
attr elevationOverlayColor
|
|
310
380
|
attr elevationOverlayEnabled
|
|
381
|
+
attr enableEdgeToEdge
|
|
311
382
|
attr endIconCheckable
|
|
312
383
|
attr endIconContentDescription
|
|
313
384
|
attr endIconDrawable
|
|
@@ -326,6 +397,7 @@ attr errorTextAppearance
|
|
|
326
397
|
attr errorTextColor
|
|
327
398
|
attr expandActivityOverflowButtonDrawable
|
|
328
399
|
attr expanded
|
|
400
|
+
attr expandedHintEnabled
|
|
329
401
|
attr expandedTitleGravity
|
|
330
402
|
attr expandedTitleMargin
|
|
331
403
|
attr expandedTitleMarginBottom
|
|
@@ -335,6 +407,7 @@ attr expandedTitleMarginTop
|
|
|
335
407
|
attr expandedTitleTextAppearance
|
|
336
408
|
attr extendMotionSpec
|
|
337
409
|
attr extendedFloatingActionButtonStyle
|
|
410
|
+
attr extraMultilineHeightEnabled
|
|
338
411
|
attr fabAlignmentMode
|
|
339
412
|
attr fabAnimationMode
|
|
340
413
|
attr fabCradleMargin
|
|
@@ -350,9 +423,27 @@ attr fastScrollHorizontalThumbDrawable
|
|
|
350
423
|
attr fastScrollHorizontalTrackDrawable
|
|
351
424
|
attr fastScrollVerticalThumbDrawable
|
|
352
425
|
attr fastScrollVerticalTrackDrawable
|
|
353
|
-
attr fastforward_increment
|
|
354
426
|
attr firstBaselineToTopHeight
|
|
355
427
|
attr floatingActionButtonStyle
|
|
428
|
+
attr flow_firstHorizontalBias
|
|
429
|
+
attr flow_firstHorizontalStyle
|
|
430
|
+
attr flow_firstVerticalBias
|
|
431
|
+
attr flow_firstVerticalStyle
|
|
432
|
+
attr flow_horizontalAlign
|
|
433
|
+
attr flow_horizontalBias
|
|
434
|
+
attr flow_horizontalGap
|
|
435
|
+
attr flow_horizontalStyle
|
|
436
|
+
attr flow_lastHorizontalBias
|
|
437
|
+
attr flow_lastHorizontalStyle
|
|
438
|
+
attr flow_lastVerticalBias
|
|
439
|
+
attr flow_lastVerticalStyle
|
|
440
|
+
attr flow_maxElementsWrap
|
|
441
|
+
attr flow_padding
|
|
442
|
+
attr flow_verticalAlign
|
|
443
|
+
attr flow_verticalBias
|
|
444
|
+
attr flow_verticalGap
|
|
445
|
+
attr flow_verticalStyle
|
|
446
|
+
attr flow_wrapMode
|
|
356
447
|
attr font
|
|
357
448
|
attr fontFamily
|
|
358
449
|
attr fontProviderAuthority
|
|
@@ -361,10 +452,13 @@ attr fontProviderFetchStrategy
|
|
|
361
452
|
attr fontProviderFetchTimeout
|
|
362
453
|
attr fontProviderPackage
|
|
363
454
|
attr fontProviderQuery
|
|
455
|
+
attr fontProviderSystemFontFamily
|
|
364
456
|
attr fontStyle
|
|
365
457
|
attr fontVariationSettings
|
|
366
458
|
attr fontWeight
|
|
459
|
+
attr forceApplySystemWindowInsetTop
|
|
367
460
|
attr foregroundInsidePadding
|
|
461
|
+
attr framePosition
|
|
368
462
|
attr gapBetweenBars
|
|
369
463
|
attr gestureInsetBottomIgnored
|
|
370
464
|
attr goIcon
|
|
@@ -376,6 +470,7 @@ attr helperText
|
|
|
376
470
|
attr helperTextEnabled
|
|
377
471
|
attr helperTextTextAppearance
|
|
378
472
|
attr helperTextTextColor
|
|
473
|
+
attr hideAnimationBehavior
|
|
379
474
|
attr hideMotionSpec
|
|
380
475
|
attr hideOnContentScroll
|
|
381
476
|
attr hideOnScroll
|
|
@@ -401,7 +496,13 @@ attr iconifiedByDefault
|
|
|
401
496
|
attr imageAspectRatio
|
|
402
497
|
attr imageAspectRatioAdjust
|
|
403
498
|
attr imageButtonStyle
|
|
499
|
+
attr indeterminateAnimationType
|
|
404
500
|
attr indeterminateProgressStyle
|
|
501
|
+
attr indicatorColor
|
|
502
|
+
attr indicatorDirectionCircular
|
|
503
|
+
attr indicatorDirectionLinear
|
|
504
|
+
attr indicatorInset
|
|
505
|
+
attr indicatorSize
|
|
405
506
|
attr initialActivityCount
|
|
406
507
|
attr insetForeground
|
|
407
508
|
attr isLightTheme
|
|
@@ -431,27 +532,84 @@ attr itemTextAppearanceActive
|
|
|
431
532
|
attr itemTextAppearanceInactive
|
|
432
533
|
attr itemTextColor
|
|
433
534
|
attr keep_content_on_player_reset
|
|
535
|
+
attr keyPositionType
|
|
536
|
+
attr keyboardIcon
|
|
434
537
|
attr keylines
|
|
435
538
|
attr labelBehavior
|
|
436
539
|
attr labelStyle
|
|
437
540
|
attr labelVisibilityMode
|
|
438
541
|
attr lastBaselineToBottomHeight
|
|
439
542
|
attr layout
|
|
543
|
+
attr layoutDescription
|
|
544
|
+
attr layoutDuringTransition
|
|
440
545
|
attr layoutManager
|
|
441
546
|
attr layout_anchor
|
|
442
547
|
attr layout_anchorGravity
|
|
443
548
|
attr layout_behavior
|
|
444
549
|
attr layout_collapseMode
|
|
445
550
|
attr layout_collapseParallaxMultiplier
|
|
551
|
+
attr layout_constrainedHeight
|
|
552
|
+
attr layout_constrainedWidth
|
|
553
|
+
attr layout_constraintBaseline_creator
|
|
554
|
+
attr layout_constraintBaseline_toBaselineOf
|
|
555
|
+
attr layout_constraintBottom_creator
|
|
556
|
+
attr layout_constraintBottom_toBottomOf
|
|
557
|
+
attr layout_constraintBottom_toTopOf
|
|
558
|
+
attr layout_constraintCircle
|
|
559
|
+
attr layout_constraintCircleAngle
|
|
560
|
+
attr layout_constraintCircleRadius
|
|
561
|
+
attr layout_constraintDimensionRatio
|
|
562
|
+
attr layout_constraintEnd_toEndOf
|
|
563
|
+
attr layout_constraintEnd_toStartOf
|
|
564
|
+
attr layout_constraintGuide_begin
|
|
565
|
+
attr layout_constraintGuide_end
|
|
566
|
+
attr layout_constraintGuide_percent
|
|
567
|
+
attr layout_constraintHeight_default
|
|
568
|
+
attr layout_constraintHeight_max
|
|
569
|
+
attr layout_constraintHeight_min
|
|
570
|
+
attr layout_constraintHeight_percent
|
|
571
|
+
attr layout_constraintHorizontal_bias
|
|
572
|
+
attr layout_constraintHorizontal_chainStyle
|
|
573
|
+
attr layout_constraintHorizontal_weight
|
|
574
|
+
attr layout_constraintLeft_creator
|
|
575
|
+
attr layout_constraintLeft_toLeftOf
|
|
576
|
+
attr layout_constraintLeft_toRightOf
|
|
577
|
+
attr layout_constraintRight_creator
|
|
578
|
+
attr layout_constraintRight_toLeftOf
|
|
579
|
+
attr layout_constraintRight_toRightOf
|
|
580
|
+
attr layout_constraintStart_toEndOf
|
|
581
|
+
attr layout_constraintStart_toStartOf
|
|
582
|
+
attr layout_constraintTag
|
|
583
|
+
attr layout_constraintTop_creator
|
|
584
|
+
attr layout_constraintTop_toBottomOf
|
|
585
|
+
attr layout_constraintTop_toTopOf
|
|
586
|
+
attr layout_constraintVertical_bias
|
|
587
|
+
attr layout_constraintVertical_chainStyle
|
|
588
|
+
attr layout_constraintVertical_weight
|
|
589
|
+
attr layout_constraintWidth_default
|
|
590
|
+
attr layout_constraintWidth_max
|
|
591
|
+
attr layout_constraintWidth_min
|
|
592
|
+
attr layout_constraintWidth_percent
|
|
446
593
|
attr layout_dodgeInsetEdges
|
|
594
|
+
attr layout_editor_absoluteX
|
|
595
|
+
attr layout_editor_absoluteY
|
|
596
|
+
attr layout_goneMarginBottom
|
|
597
|
+
attr layout_goneMarginEnd
|
|
598
|
+
attr layout_goneMarginLeft
|
|
599
|
+
attr layout_goneMarginRight
|
|
600
|
+
attr layout_goneMarginStart
|
|
601
|
+
attr layout_goneMarginTop
|
|
447
602
|
attr layout_insetEdge
|
|
448
603
|
attr layout_keyline
|
|
604
|
+
attr layout_optimizationLevel
|
|
449
605
|
attr layout_scrollFlags
|
|
450
606
|
attr layout_scrollInterpolator
|
|
451
607
|
attr liftOnScroll
|
|
452
608
|
attr liftOnScrollTargetViewId
|
|
609
|
+
attr limitBoundsTo
|
|
453
610
|
attr lineHeight
|
|
454
611
|
attr lineSpacing
|
|
612
|
+
attr linearProgressIndicatorStyle
|
|
455
613
|
attr listChoiceBackgroundIndicator
|
|
456
614
|
attr listChoiceIndicatorMultipleAnimated
|
|
457
615
|
attr listChoiceIndicatorSingleAnimated
|
|
@@ -479,32 +637,87 @@ attr materialButtonStyle
|
|
|
479
637
|
attr materialButtonToggleGroupStyle
|
|
480
638
|
attr materialCalendarDay
|
|
481
639
|
attr materialCalendarFullscreenTheme
|
|
640
|
+
attr materialCalendarHeaderCancelButton
|
|
482
641
|
attr materialCalendarHeaderConfirmButton
|
|
483
642
|
attr materialCalendarHeaderDivider
|
|
484
643
|
attr materialCalendarHeaderLayout
|
|
485
644
|
attr materialCalendarHeaderSelection
|
|
486
645
|
attr materialCalendarHeaderTitle
|
|
487
646
|
attr materialCalendarHeaderToggleButton
|
|
647
|
+
attr materialCalendarMonth
|
|
648
|
+
attr materialCalendarMonthNavigationButton
|
|
488
649
|
attr materialCalendarStyle
|
|
489
650
|
attr materialCalendarTheme
|
|
651
|
+
attr materialCalendarYearNavigationButton
|
|
490
652
|
attr materialCardViewStyle
|
|
653
|
+
attr materialCircleRadius
|
|
654
|
+
attr materialClockStyle
|
|
491
655
|
attr materialThemeOverlay
|
|
656
|
+
attr materialTimePickerStyle
|
|
657
|
+
attr materialTimePickerTheme
|
|
658
|
+
attr maxAcceleration
|
|
492
659
|
attr maxActionInlineWidth
|
|
493
660
|
attr maxButtonHeight
|
|
494
661
|
attr maxCharacterCount
|
|
662
|
+
attr maxHeight
|
|
495
663
|
attr maxImageSize
|
|
496
664
|
attr maxLines
|
|
665
|
+
attr maxVelocity
|
|
666
|
+
attr maxWidth
|
|
497
667
|
attr measureWithLargestChild
|
|
498
668
|
attr menu
|
|
669
|
+
attr menuGravity
|
|
670
|
+
attr minHeight
|
|
671
|
+
attr minHideDelay
|
|
672
|
+
attr minSeparation
|
|
499
673
|
attr minTouchTargetSize
|
|
674
|
+
attr minWidth
|
|
675
|
+
attr mock_diagonalsColor
|
|
676
|
+
attr mock_label
|
|
677
|
+
attr mock_labelBackgroundColor
|
|
678
|
+
attr mock_labelColor
|
|
679
|
+
attr mock_showDiagonals
|
|
680
|
+
attr mock_showLabel
|
|
681
|
+
attr motionDebug
|
|
682
|
+
attr motionDurationLong1
|
|
683
|
+
attr motionDurationLong2
|
|
684
|
+
attr motionDurationMedium1
|
|
685
|
+
attr motionDurationMedium2
|
|
686
|
+
attr motionDurationShort1
|
|
687
|
+
attr motionDurationShort2
|
|
688
|
+
attr motionEasingAccelerated
|
|
689
|
+
attr motionEasingDecelerated
|
|
690
|
+
attr motionEasingEmphasized
|
|
691
|
+
attr motionEasingLinear
|
|
692
|
+
attr motionEasingStandard
|
|
693
|
+
attr motionInterpolator
|
|
694
|
+
attr motionPath
|
|
695
|
+
attr motionPathRotate
|
|
696
|
+
attr motionProgress
|
|
697
|
+
attr motionStagger
|
|
698
|
+
attr motionTarget
|
|
699
|
+
attr motion_postLayoutCollision
|
|
700
|
+
attr motion_triggerOnCollision
|
|
701
|
+
attr moveWhenScrollAtTop
|
|
500
702
|
attr multiChoiceItemLayout
|
|
501
703
|
attr navigationContentDescription
|
|
502
704
|
attr navigationIcon
|
|
705
|
+
attr navigationIconTint
|
|
503
706
|
attr navigationMode
|
|
707
|
+
attr navigationRailStyle
|
|
504
708
|
attr navigationViewStyle
|
|
709
|
+
attr nestedScrollFlags
|
|
710
|
+
attr nestedScrollable
|
|
505
711
|
attr number
|
|
506
712
|
attr numericModifiers
|
|
713
|
+
attr onCross
|
|
714
|
+
attr onHide
|
|
715
|
+
attr onNegativeCross
|
|
716
|
+
attr onPositiveCross
|
|
717
|
+
attr onShow
|
|
718
|
+
attr onTouchUp
|
|
507
719
|
attr overlapAnchor
|
|
720
|
+
attr overlay
|
|
508
721
|
attr overlayImage
|
|
509
722
|
attr paddingBottomNoButtons
|
|
510
723
|
attr paddingBottomSystemWindowInsets
|
|
@@ -513,6 +726,7 @@ attr paddingLeftSystemWindowInsets
|
|
|
513
726
|
attr paddingRightSystemWindowInsets
|
|
514
727
|
attr paddingStart
|
|
515
728
|
attr paddingTopNoTitle
|
|
729
|
+
attr paddingTopSystemWindowInsets
|
|
516
730
|
attr panelBackground
|
|
517
731
|
attr panelMenuListTheme
|
|
518
732
|
attr panelMenuListWidth
|
|
@@ -521,11 +735,20 @@ attr passwordToggleDrawable
|
|
|
521
735
|
attr passwordToggleEnabled
|
|
522
736
|
attr passwordToggleTint
|
|
523
737
|
attr passwordToggleTintMode
|
|
738
|
+
attr pathMotionArc
|
|
739
|
+
attr path_percent
|
|
740
|
+
attr percentHeight
|
|
741
|
+
attr percentWidth
|
|
742
|
+
attr percentX
|
|
743
|
+
attr percentY
|
|
744
|
+
attr perpendicularPath_percent
|
|
745
|
+
attr pivotAnchor
|
|
524
746
|
attr placeholderImage
|
|
525
747
|
attr placeholderImageScaleType
|
|
526
748
|
attr placeholderText
|
|
527
749
|
attr placeholderTextAppearance
|
|
528
750
|
attr placeholderTextColor
|
|
751
|
+
attr placeholder_emptyVisibility
|
|
529
752
|
attr played_ad_marker_color
|
|
530
753
|
attr played_color
|
|
531
754
|
attr player_layout_id
|
|
@@ -552,16 +775,21 @@ attr ratingBarStyle
|
|
|
552
775
|
attr ratingBarStyleIndicator
|
|
553
776
|
attr ratingBarStyleSmall
|
|
554
777
|
attr recyclerViewStyle
|
|
778
|
+
attr region_heightLessThan
|
|
779
|
+
attr region_heightMoreThan
|
|
780
|
+
attr region_widthLessThan
|
|
781
|
+
attr region_widthMoreThan
|
|
555
782
|
attr repeat_toggle_modes
|
|
556
783
|
attr resize_mode
|
|
557
784
|
attr retryImage
|
|
558
785
|
attr retryImageScaleType
|
|
559
786
|
attr reverseLayout
|
|
560
|
-
attr rewind_increment
|
|
561
787
|
attr rippleColor
|
|
788
|
+
attr round
|
|
562
789
|
attr roundAsCircle
|
|
563
790
|
attr roundBottomLeft
|
|
564
791
|
attr roundBottomRight
|
|
792
|
+
attr roundPercent
|
|
565
793
|
attr roundTopLeft
|
|
566
794
|
attr roundTopRight
|
|
567
795
|
attr roundWithOverlayColor
|
|
@@ -569,6 +797,7 @@ attr roundedCornerRadius
|
|
|
569
797
|
attr roundingBorderColor
|
|
570
798
|
attr roundingBorderPadding
|
|
571
799
|
attr roundingBorderWidth
|
|
800
|
+
attr saturation
|
|
572
801
|
attr scopeUris
|
|
573
802
|
attr scrimAnimationDuration
|
|
574
803
|
attr scrimBackground
|
|
@@ -585,24 +814,35 @@ attr seekBarStyle
|
|
|
585
814
|
attr selectableItemBackground
|
|
586
815
|
attr selectableItemBackgroundBorderless
|
|
587
816
|
attr selectionRequired
|
|
817
|
+
attr selectorSize
|
|
588
818
|
attr shapeAppearance
|
|
589
819
|
attr shapeAppearanceLargeComponent
|
|
590
820
|
attr shapeAppearanceMediumComponent
|
|
591
821
|
attr shapeAppearanceOverlay
|
|
592
822
|
attr shapeAppearanceSmallComponent
|
|
823
|
+
attr showAnimationBehavior
|
|
593
824
|
attr showAsAction
|
|
825
|
+
attr showDelay
|
|
594
826
|
attr showDividers
|
|
595
827
|
attr showMotionSpec
|
|
828
|
+
attr showPaths
|
|
596
829
|
attr showText
|
|
597
830
|
attr showTitle
|
|
598
831
|
attr show_buffering
|
|
832
|
+
attr show_fastforward_button
|
|
833
|
+
attr show_next_button
|
|
834
|
+
attr show_previous_button
|
|
835
|
+
attr show_rewind_button
|
|
599
836
|
attr show_shuffle_button
|
|
837
|
+
attr show_subtitle_button
|
|
600
838
|
attr show_timeout
|
|
839
|
+
attr show_vr_button
|
|
601
840
|
attr shrinkMotionSpec
|
|
602
841
|
attr shutter_background_color
|
|
603
842
|
attr singleChoiceItemLayout
|
|
604
843
|
attr singleLine
|
|
605
844
|
attr singleSelection
|
|
845
|
+
attr sizePercent
|
|
606
846
|
attr sliderStyle
|
|
607
847
|
attr snackbarButtonStyle
|
|
608
848
|
attr snackbarStyle
|
|
@@ -614,6 +854,7 @@ attr spinnerStyle
|
|
|
614
854
|
attr splitTrack
|
|
615
855
|
attr srcCompat
|
|
616
856
|
attr stackFromEnd
|
|
857
|
+
attr staggered
|
|
617
858
|
attr startIconCheckable
|
|
618
859
|
attr startIconContentDescription
|
|
619
860
|
attr startIconDrawable
|
|
@@ -633,6 +874,7 @@ attr strokeWidth
|
|
|
633
874
|
attr subMenuArrow
|
|
634
875
|
attr submitBackground
|
|
635
876
|
attr subtitle
|
|
877
|
+
attr subtitleCentered
|
|
636
878
|
attr subtitleTextAppearance
|
|
637
879
|
attr subtitleTextColor
|
|
638
880
|
attr subtitleTextStyle
|
|
@@ -652,6 +894,7 @@ attr tabIconTint
|
|
|
652
894
|
attr tabIconTintMode
|
|
653
895
|
attr tabIndicator
|
|
654
896
|
attr tabIndicatorAnimationDuration
|
|
897
|
+
attr tabIndicatorAnimationMode
|
|
655
898
|
attr tabIndicatorColor
|
|
656
899
|
attr tabIndicatorFullWidth
|
|
657
900
|
attr tabIndicatorGravity
|
|
@@ -671,6 +914,10 @@ attr tabStyle
|
|
|
671
914
|
attr tabTextAppearance
|
|
672
915
|
attr tabTextColor
|
|
673
916
|
attr tabUnboundedRipple
|
|
917
|
+
attr targetId
|
|
918
|
+
attr telltales_tailColor
|
|
919
|
+
attr telltales_tailScale
|
|
920
|
+
attr telltales_velocityMode
|
|
674
921
|
attr textAllCaps
|
|
675
922
|
attr textAppearanceBody1
|
|
676
923
|
attr textAppearanceBody2
|
|
@@ -707,6 +954,8 @@ attr thickness
|
|
|
707
954
|
attr thumbColor
|
|
708
955
|
attr thumbElevation
|
|
709
956
|
attr thumbRadius
|
|
957
|
+
attr thumbStrokeColor
|
|
958
|
+
attr thumbStrokeWidth
|
|
710
959
|
attr thumbTextPadding
|
|
711
960
|
attr thumbTint
|
|
712
961
|
attr thumbTintMode
|
|
@@ -716,10 +965,13 @@ attr tickColorInactive
|
|
|
716
965
|
attr tickMark
|
|
717
966
|
attr tickMarkTint
|
|
718
967
|
attr tickMarkTintMode
|
|
968
|
+
attr tickVisible
|
|
719
969
|
attr time_bar_min_update_interval
|
|
720
970
|
attr tint
|
|
721
971
|
attr tintMode
|
|
722
972
|
attr title
|
|
973
|
+
attr titleCentered
|
|
974
|
+
attr titleCollapseMode
|
|
723
975
|
attr titleEnabled
|
|
724
976
|
attr titleMargin
|
|
725
977
|
attr titleMarginBottom
|
|
@@ -737,27 +989,45 @@ attr tooltipForegroundColor
|
|
|
737
989
|
attr tooltipFrameBackground
|
|
738
990
|
attr tooltipStyle
|
|
739
991
|
attr tooltipText
|
|
992
|
+
attr touchAnchorId
|
|
993
|
+
attr touchAnchorSide
|
|
994
|
+
attr touchRegionId
|
|
740
995
|
attr touch_target_height
|
|
741
996
|
attr track
|
|
742
997
|
attr trackColor
|
|
743
998
|
attr trackColorActive
|
|
744
999
|
attr trackColorInactive
|
|
1000
|
+
attr trackCornerRadius
|
|
745
1001
|
attr trackHeight
|
|
1002
|
+
attr trackThickness
|
|
746
1003
|
attr trackTint
|
|
747
1004
|
attr trackTintMode
|
|
1005
|
+
attr transitionDisable
|
|
1006
|
+
attr transitionEasing
|
|
1007
|
+
attr transitionFlags
|
|
1008
|
+
attr transitionPathRotate
|
|
748
1009
|
attr transitionShapeAppearance
|
|
1010
|
+
attr triggerId
|
|
1011
|
+
attr triggerReceiver
|
|
1012
|
+
attr triggerSlack
|
|
749
1013
|
attr ttcIndex
|
|
750
1014
|
attr unplayed_color
|
|
751
1015
|
attr useCompatPadding
|
|
752
1016
|
attr useMaterialThemeColors
|
|
753
1017
|
attr use_artwork
|
|
754
1018
|
attr use_controller
|
|
755
|
-
attr use_sensor_rotation
|
|
756
1019
|
attr values
|
|
757
1020
|
attr verticalOffset
|
|
758
1021
|
attr viewAspectRatio
|
|
759
1022
|
attr viewInflaterClass
|
|
1023
|
+
attr visibilityMode
|
|
760
1024
|
attr voiceIcon
|
|
1025
|
+
attr warmth
|
|
1026
|
+
attr waveDecay
|
|
1027
|
+
attr waveOffset
|
|
1028
|
+
attr wavePeriod
|
|
1029
|
+
attr waveShape
|
|
1030
|
+
attr waveVariesBy
|
|
761
1031
|
attr windowActionBar
|
|
762
1032
|
attr windowActionBarOverlay
|
|
763
1033
|
attr windowActionModeOverlay
|
|
@@ -884,8 +1154,14 @@ color dim_foreground_material_dark
|
|
|
884
1154
|
color dim_foreground_material_light
|
|
885
1155
|
color error_color_material_dark
|
|
886
1156
|
color error_color_material_light
|
|
1157
|
+
color exo_black_opacity_60
|
|
1158
|
+
color exo_black_opacity_70
|
|
1159
|
+
color exo_bottom_bar_background
|
|
887
1160
|
color exo_edit_mode_background_color
|
|
888
1161
|
color exo_error_message_background_color
|
|
1162
|
+
color exo_styled_error_message_background
|
|
1163
|
+
color exo_white
|
|
1164
|
+
color exo_white_opacity_70
|
|
889
1165
|
color foreground_material_dark
|
|
890
1166
|
color foreground_material_light
|
|
891
1167
|
color highlighted_text_material_dark
|
|
@@ -895,6 +1171,7 @@ color hint_foreground_material_light
|
|
|
895
1171
|
color material_blue_grey_800
|
|
896
1172
|
color material_blue_grey_900
|
|
897
1173
|
color material_blue_grey_950
|
|
1174
|
+
color material_cursor_color
|
|
898
1175
|
color material_deep_teal_200
|
|
899
1176
|
color material_deep_teal_500
|
|
900
1177
|
color material_grey_100
|
|
@@ -920,10 +1197,11 @@ color material_slider_halo_color
|
|
|
920
1197
|
color material_slider_inactive_tick_marks_color
|
|
921
1198
|
color material_slider_inactive_track_color
|
|
922
1199
|
color material_slider_thumb_color
|
|
923
|
-
color
|
|
924
|
-
color
|
|
925
|
-
color
|
|
926
|
-
color
|
|
1200
|
+
color material_timepicker_button_background
|
|
1201
|
+
color material_timepicker_button_stroke
|
|
1202
|
+
color material_timepicker_clock_text_color
|
|
1203
|
+
color material_timepicker_clockface
|
|
1204
|
+
color material_timepicker_modebutton_tint
|
|
927
1205
|
color mtrl_btn_bg_color_selector
|
|
928
1206
|
color mtrl_btn_ripple_color
|
|
929
1207
|
color mtrl_btn_stroke_color_selector
|
|
@@ -938,7 +1216,6 @@ color mtrl_card_view_foreground
|
|
|
938
1216
|
color mtrl_card_view_ripple
|
|
939
1217
|
color mtrl_chip_background_color
|
|
940
1218
|
color mtrl_chip_close_icon_tint
|
|
941
|
-
color mtrl_chip_ripple_color
|
|
942
1219
|
color mtrl_chip_surface_color
|
|
943
1220
|
color mtrl_chip_text_color
|
|
944
1221
|
color mtrl_choice_chip_background_color
|
|
@@ -952,10 +1229,15 @@ color mtrl_filled_background_color
|
|
|
952
1229
|
color mtrl_filled_icon_tint
|
|
953
1230
|
color mtrl_filled_stroke_color
|
|
954
1231
|
color mtrl_indicator_text_color
|
|
1232
|
+
color mtrl_navigation_bar_colored_item_tint
|
|
1233
|
+
color mtrl_navigation_bar_colored_ripple_color
|
|
1234
|
+
color mtrl_navigation_bar_item_tint
|
|
1235
|
+
color mtrl_navigation_bar_ripple_color
|
|
955
1236
|
color mtrl_navigation_item_background_color
|
|
956
1237
|
color mtrl_navigation_item_icon_tint
|
|
957
1238
|
color mtrl_navigation_item_text_color
|
|
958
1239
|
color mtrl_on_primary_text_btn_text_color_selector
|
|
1240
|
+
color mtrl_on_surface_ripple_color
|
|
959
1241
|
color mtrl_outlined_icon_tint
|
|
960
1242
|
color mtrl_outlined_stroke_color
|
|
961
1243
|
color mtrl_popupmenu_overlay_color
|
|
@@ -1061,6 +1343,9 @@ dimen abc_search_view_text_min_width
|
|
|
1061
1343
|
dimen abc_seekbar_track_background_height_material
|
|
1062
1344
|
dimen abc_seekbar_track_progress_height_material
|
|
1063
1345
|
dimen abc_select_dialog_padding_start_material
|
|
1346
|
+
dimen abc_star_big
|
|
1347
|
+
dimen abc_star_medium
|
|
1348
|
+
dimen abc_star_small
|
|
1064
1349
|
dimen abc_switch_padding
|
|
1065
1350
|
dimen abc_text_size_body_1_material
|
|
1066
1351
|
dimen abc_text_size_body_2_material
|
|
@@ -1085,6 +1370,7 @@ dimen appcompat_dialog_background_inset
|
|
|
1085
1370
|
dimen cardview_compat_inset_shadow
|
|
1086
1371
|
dimen cardview_default_elevation
|
|
1087
1372
|
dimen cardview_default_radius
|
|
1373
|
+
dimen clock_face_margin_start
|
|
1088
1374
|
dimen compat_button_inset_horizontal_material
|
|
1089
1375
|
dimen compat_button_inset_vertical_material
|
|
1090
1376
|
dimen compat_button_padding_horizontal_material
|
|
@@ -1102,6 +1388,7 @@ dimen design_bottom_navigation_height
|
|
|
1102
1388
|
dimen design_bottom_navigation_icon_size
|
|
1103
1389
|
dimen design_bottom_navigation_item_max_width
|
|
1104
1390
|
dimen design_bottom_navigation_item_min_width
|
|
1391
|
+
dimen design_bottom_navigation_label_padding
|
|
1105
1392
|
dimen design_bottom_navigation_margin
|
|
1106
1393
|
dimen design_bottom_navigation_shadow_height
|
|
1107
1394
|
dimen design_bottom_navigation_text_size
|
|
@@ -1145,8 +1432,41 @@ dimen dialog_fixed_width_major
|
|
|
1145
1432
|
dimen dialog_fixed_width_minor
|
|
1146
1433
|
dimen disabled_alpha_material_dark
|
|
1147
1434
|
dimen disabled_alpha_material_light
|
|
1435
|
+
dimen exo_error_message_height
|
|
1436
|
+
dimen exo_error_message_margin_bottom
|
|
1437
|
+
dimen exo_error_message_text_padding_horizontal
|
|
1438
|
+
dimen exo_error_message_text_padding_vertical
|
|
1439
|
+
dimen exo_error_message_text_size
|
|
1440
|
+
dimen exo_icon_horizontal_margin
|
|
1441
|
+
dimen exo_icon_padding
|
|
1442
|
+
dimen exo_icon_padding_bottom
|
|
1443
|
+
dimen exo_icon_size
|
|
1444
|
+
dimen exo_icon_text_size
|
|
1148
1445
|
dimen exo_media_button_height
|
|
1149
1446
|
dimen exo_media_button_width
|
|
1447
|
+
dimen exo_setting_width
|
|
1448
|
+
dimen exo_settings_height
|
|
1449
|
+
dimen exo_settings_icon_size
|
|
1450
|
+
dimen exo_settings_main_text_size
|
|
1451
|
+
dimen exo_settings_offset
|
|
1452
|
+
dimen exo_settings_sub_text_size
|
|
1453
|
+
dimen exo_settings_text_height
|
|
1454
|
+
dimen exo_small_icon_height
|
|
1455
|
+
dimen exo_small_icon_horizontal_margin
|
|
1456
|
+
dimen exo_small_icon_padding_horizontal
|
|
1457
|
+
dimen exo_small_icon_padding_vertical
|
|
1458
|
+
dimen exo_small_icon_width
|
|
1459
|
+
dimen exo_styled_bottom_bar_height
|
|
1460
|
+
dimen exo_styled_bottom_bar_margin_top
|
|
1461
|
+
dimen exo_styled_bottom_bar_time_padding
|
|
1462
|
+
dimen exo_styled_controls_padding
|
|
1463
|
+
dimen exo_styled_minimal_controls_margin_bottom
|
|
1464
|
+
dimen exo_styled_progress_bar_height
|
|
1465
|
+
dimen exo_styled_progress_dragged_thumb_size
|
|
1466
|
+
dimen exo_styled_progress_enabled_thumb_size
|
|
1467
|
+
dimen exo_styled_progress_layout_height
|
|
1468
|
+
dimen exo_styled_progress_margin_bottom
|
|
1469
|
+
dimen exo_styled_progress_touch_target_height
|
|
1150
1470
|
dimen fastscroll_default_thickness
|
|
1151
1471
|
dimen fastscroll_margin
|
|
1152
1472
|
dimen fastscroll_minimum_range
|
|
@@ -1161,11 +1481,41 @@ dimen inapp_button_height
|
|
|
1161
1481
|
dimen item_touch_helper_max_drag_scroll_per_frame
|
|
1162
1482
|
dimen item_touch_helper_swipe_escape_max_velocity
|
|
1163
1483
|
dimen item_touch_helper_swipe_escape_velocity
|
|
1484
|
+
dimen material_bottom_sheet_max_width
|
|
1485
|
+
dimen material_clock_display_padding
|
|
1486
|
+
dimen material_clock_face_margin_top
|
|
1487
|
+
dimen material_clock_hand_center_dot_radius
|
|
1488
|
+
dimen material_clock_hand_padding
|
|
1489
|
+
dimen material_clock_hand_stroke_width
|
|
1490
|
+
dimen material_clock_number_text_size
|
|
1491
|
+
dimen material_clock_period_toggle_height
|
|
1492
|
+
dimen material_clock_period_toggle_margin_left
|
|
1493
|
+
dimen material_clock_period_toggle_width
|
|
1494
|
+
dimen material_clock_size
|
|
1495
|
+
dimen material_cursor_inset_bottom
|
|
1496
|
+
dimen material_cursor_inset_top
|
|
1497
|
+
dimen material_cursor_width
|
|
1164
1498
|
dimen material_emphasis_disabled
|
|
1165
1499
|
dimen material_emphasis_high_type
|
|
1166
1500
|
dimen material_emphasis_medium
|
|
1501
|
+
dimen material_filled_edittext_font_1_3_padding_bottom
|
|
1502
|
+
dimen material_filled_edittext_font_1_3_padding_top
|
|
1503
|
+
dimen material_filled_edittext_font_2_0_padding_bottom
|
|
1504
|
+
dimen material_filled_edittext_font_2_0_padding_top
|
|
1505
|
+
dimen material_font_1_3_box_collapsed_padding_top
|
|
1506
|
+
dimen material_font_2_0_box_collapsed_padding_top
|
|
1507
|
+
dimen material_helper_text_default_padding_top
|
|
1508
|
+
dimen material_helper_text_font_1_3_padding_horizontal
|
|
1509
|
+
dimen material_helper_text_font_1_3_padding_top
|
|
1510
|
+
dimen material_input_text_to_prefix_suffix_padding
|
|
1167
1511
|
dimen material_text_view_test_line_height
|
|
1168
1512
|
dimen material_text_view_test_line_height_override
|
|
1513
|
+
dimen material_textinput_default_width
|
|
1514
|
+
dimen material_textinput_max_width
|
|
1515
|
+
dimen material_textinput_min_width
|
|
1516
|
+
dimen material_time_picker_minimum_screen_height
|
|
1517
|
+
dimen material_time_picker_minimum_screen_width
|
|
1518
|
+
dimen material_timepicker_dialog_buttons_margin_top
|
|
1169
1519
|
dimen mtrl_alert_dialog_background_inset_bottom
|
|
1170
1520
|
dimen mtrl_alert_dialog_background_inset_end
|
|
1171
1521
|
dimen mtrl_alert_dialog_background_inset_start
|
|
@@ -1176,6 +1526,8 @@ dimen mtrl_badge_long_text_horizontal_padding
|
|
|
1176
1526
|
dimen mtrl_badge_radius
|
|
1177
1527
|
dimen mtrl_badge_text_horizontal_edge_offset
|
|
1178
1528
|
dimen mtrl_badge_text_size
|
|
1529
|
+
dimen mtrl_badge_toolbar_action_menu_item_horizontal_offset
|
|
1530
|
+
dimen mtrl_badge_toolbar_action_menu_item_vertical_offset
|
|
1179
1531
|
dimen mtrl_badge_with_text_radius
|
|
1180
1532
|
dimen mtrl_bottomappbar_fabOffsetEndMode
|
|
1181
1533
|
dimen mtrl_bottomappbar_fab_bottom_margin
|
|
@@ -1194,17 +1546,20 @@ dimen mtrl_btn_icon_btn_padding_left
|
|
|
1194
1546
|
dimen mtrl_btn_icon_padding
|
|
1195
1547
|
dimen mtrl_btn_inset
|
|
1196
1548
|
dimen mtrl_btn_letter_spacing
|
|
1549
|
+
dimen mtrl_btn_max_width
|
|
1197
1550
|
dimen mtrl_btn_padding_bottom
|
|
1198
1551
|
dimen mtrl_btn_padding_left
|
|
1199
1552
|
dimen mtrl_btn_padding_right
|
|
1200
1553
|
dimen mtrl_btn_padding_top
|
|
1201
1554
|
dimen mtrl_btn_pressed_z
|
|
1555
|
+
dimen mtrl_btn_snackbar_margin_horizontal
|
|
1202
1556
|
dimen mtrl_btn_stroke_size
|
|
1203
1557
|
dimen mtrl_btn_text_btn_icon_padding
|
|
1204
1558
|
dimen mtrl_btn_text_btn_padding_left
|
|
1205
1559
|
dimen mtrl_btn_text_btn_padding_right
|
|
1206
1560
|
dimen mtrl_btn_text_size
|
|
1207
1561
|
dimen mtrl_btn_z
|
|
1562
|
+
dimen mtrl_calendar_action_confirm_button_min_width
|
|
1208
1563
|
dimen mtrl_calendar_action_height
|
|
1209
1564
|
dimen mtrl_calendar_action_padding
|
|
1210
1565
|
dimen mtrl_calendar_bottom_padding
|
|
@@ -1289,12 +1644,37 @@ dimen mtrl_low_ripple_focused_alpha
|
|
|
1289
1644
|
dimen mtrl_low_ripple_hovered_alpha
|
|
1290
1645
|
dimen mtrl_low_ripple_pressed_alpha
|
|
1291
1646
|
dimen mtrl_min_touch_target_size
|
|
1647
|
+
dimen mtrl_navigation_bar_item_default_icon_size
|
|
1648
|
+
dimen mtrl_navigation_bar_item_default_margin
|
|
1292
1649
|
dimen mtrl_navigation_elevation
|
|
1293
1650
|
dimen mtrl_navigation_item_horizontal_padding
|
|
1294
1651
|
dimen mtrl_navigation_item_icon_padding
|
|
1295
1652
|
dimen mtrl_navigation_item_icon_size
|
|
1296
1653
|
dimen mtrl_navigation_item_shape_horizontal_margin
|
|
1297
1654
|
dimen mtrl_navigation_item_shape_vertical_margin
|
|
1655
|
+
dimen mtrl_navigation_rail_active_text_size
|
|
1656
|
+
dimen mtrl_navigation_rail_compact_width
|
|
1657
|
+
dimen mtrl_navigation_rail_default_width
|
|
1658
|
+
dimen mtrl_navigation_rail_elevation
|
|
1659
|
+
dimen mtrl_navigation_rail_icon_margin
|
|
1660
|
+
dimen mtrl_navigation_rail_icon_size
|
|
1661
|
+
dimen mtrl_navigation_rail_margin
|
|
1662
|
+
dimen mtrl_navigation_rail_text_bottom_margin
|
|
1663
|
+
dimen mtrl_navigation_rail_text_size
|
|
1664
|
+
dimen mtrl_progress_circular_inset
|
|
1665
|
+
dimen mtrl_progress_circular_inset_extra_small
|
|
1666
|
+
dimen mtrl_progress_circular_inset_medium
|
|
1667
|
+
dimen mtrl_progress_circular_inset_small
|
|
1668
|
+
dimen mtrl_progress_circular_radius
|
|
1669
|
+
dimen mtrl_progress_circular_size
|
|
1670
|
+
dimen mtrl_progress_circular_size_extra_small
|
|
1671
|
+
dimen mtrl_progress_circular_size_medium
|
|
1672
|
+
dimen mtrl_progress_circular_size_small
|
|
1673
|
+
dimen mtrl_progress_circular_track_thickness_extra_small
|
|
1674
|
+
dimen mtrl_progress_circular_track_thickness_medium
|
|
1675
|
+
dimen mtrl_progress_circular_track_thickness_small
|
|
1676
|
+
dimen mtrl_progress_indicator_full_rounded_corner_radius
|
|
1677
|
+
dimen mtrl_progress_track_thickness
|
|
1298
1678
|
dimen mtrl_shape_corner_size_large_component
|
|
1299
1679
|
dimen mtrl_shape_corner_size_medium_component
|
|
1300
1680
|
dimen mtrl_shape_corner_size_small_component
|
|
@@ -1312,6 +1692,8 @@ dimen mtrl_snackbar_action_text_color_alpha
|
|
|
1312
1692
|
dimen mtrl_snackbar_background_corner_radius
|
|
1313
1693
|
dimen mtrl_snackbar_background_overlay_color_alpha
|
|
1314
1694
|
dimen mtrl_snackbar_margin
|
|
1695
|
+
dimen mtrl_snackbar_message_margin_horizontal
|
|
1696
|
+
dimen mtrl_snackbar_padding_horizontal
|
|
1315
1697
|
dimen mtrl_switch_thumb_elevation
|
|
1316
1698
|
dimen mtrl_textinput_box_corner_radius_medium
|
|
1317
1699
|
dimen mtrl_textinput_box_corner_radius_small
|
|
@@ -1344,11 +1726,18 @@ dimen notification_small_icon_size_as_large
|
|
|
1344
1726
|
dimen notification_subtext_size
|
|
1345
1727
|
dimen notification_top_pad
|
|
1346
1728
|
dimen notification_top_pad_large_text
|
|
1347
|
-
dimen subtitle_corner_radius
|
|
1348
|
-
dimen subtitle_outline_width
|
|
1349
|
-
dimen subtitle_shadow_offset
|
|
1350
|
-
dimen subtitle_shadow_radius
|
|
1351
1729
|
dimen test_mtrl_calendar_day_cornerSize
|
|
1730
|
+
dimen test_navigation_bar_active_item_max_width
|
|
1731
|
+
dimen test_navigation_bar_active_item_min_width
|
|
1732
|
+
dimen test_navigation_bar_active_text_size
|
|
1733
|
+
dimen test_navigation_bar_elevation
|
|
1734
|
+
dimen test_navigation_bar_height
|
|
1735
|
+
dimen test_navigation_bar_icon_size
|
|
1736
|
+
dimen test_navigation_bar_item_max_width
|
|
1737
|
+
dimen test_navigation_bar_item_min_width
|
|
1738
|
+
dimen test_navigation_bar_label_padding
|
|
1739
|
+
dimen test_navigation_bar_shadow_height
|
|
1740
|
+
dimen test_navigation_bar_text_size
|
|
1352
1741
|
dimen tooltip_corner_radius
|
|
1353
1742
|
dimen tooltip_horizontal_padding
|
|
1354
1743
|
dimen tooltip_margin
|
|
@@ -1443,15 +1832,20 @@ drawable abc_seekbar_tick_mark_material
|
|
|
1443
1832
|
drawable abc_seekbar_track_material
|
|
1444
1833
|
drawable abc_spinner_mtrl_am_alpha
|
|
1445
1834
|
drawable abc_spinner_textfield_background_material
|
|
1835
|
+
drawable abc_star_black_48dp
|
|
1836
|
+
drawable abc_star_half_black_48dp
|
|
1446
1837
|
drawable abc_switch_thumb_material
|
|
1447
1838
|
drawable abc_switch_track_mtrl_alpha
|
|
1448
1839
|
drawable abc_tab_indicator_material
|
|
1449
1840
|
drawable abc_tab_indicator_mtrl_alpha
|
|
1450
1841
|
drawable abc_text_cursor_material
|
|
1842
|
+
drawable abc_text_select_handle_left_mtrl
|
|
1451
1843
|
drawable abc_text_select_handle_left_mtrl_dark
|
|
1452
1844
|
drawable abc_text_select_handle_left_mtrl_light
|
|
1845
|
+
drawable abc_text_select_handle_middle_mtrl
|
|
1453
1846
|
drawable abc_text_select_handle_middle_mtrl_dark
|
|
1454
1847
|
drawable abc_text_select_handle_middle_mtrl_light
|
|
1848
|
+
drawable abc_text_select_handle_right_mtrl
|
|
1455
1849
|
drawable abc_text_select_handle_right_mtrl_dark
|
|
1456
1850
|
drawable abc_text_select_handle_right_mtrl_light
|
|
1457
1851
|
drawable abc_textfield_activated_mtrl_alpha
|
|
@@ -1500,7 +1894,6 @@ drawable ct_unselected_dot
|
|
|
1500
1894
|
drawable ct_video_1
|
|
1501
1895
|
drawable ct_volume_off
|
|
1502
1896
|
drawable ct_volume_on
|
|
1503
|
-
drawable design_bottom_navigation_item_background
|
|
1504
1897
|
drawable design_fab_background
|
|
1505
1898
|
drawable design_ic_visibility
|
|
1506
1899
|
drawable design_ic_visibility_off
|
|
@@ -1521,6 +1914,23 @@ drawable exo_controls_shuffle_off
|
|
|
1521
1914
|
drawable exo_controls_shuffle_on
|
|
1522
1915
|
drawable exo_controls_vr
|
|
1523
1916
|
drawable exo_edit_mode_logo
|
|
1917
|
+
drawable exo_ic_audiotrack
|
|
1918
|
+
drawable exo_ic_check
|
|
1919
|
+
drawable exo_ic_chevron_left
|
|
1920
|
+
drawable exo_ic_chevron_right
|
|
1921
|
+
drawable exo_ic_default_album_image
|
|
1922
|
+
drawable exo_ic_forward
|
|
1923
|
+
drawable exo_ic_fullscreen_enter
|
|
1924
|
+
drawable exo_ic_fullscreen_exit
|
|
1925
|
+
drawable exo_ic_pause_circle_filled
|
|
1926
|
+
drawable exo_ic_play_circle_filled
|
|
1927
|
+
drawable exo_ic_rewind
|
|
1928
|
+
drawable exo_ic_settings
|
|
1929
|
+
drawable exo_ic_skip_next
|
|
1930
|
+
drawable exo_ic_skip_previous
|
|
1931
|
+
drawable exo_ic_speed
|
|
1932
|
+
drawable exo_ic_subtitle_off
|
|
1933
|
+
drawable exo_ic_subtitle_on
|
|
1524
1934
|
drawable exo_icon_circular_play
|
|
1525
1935
|
drawable exo_icon_fastforward
|
|
1526
1936
|
drawable exo_icon_fullscreen_enter
|
|
@@ -1545,16 +1955,44 @@ drawable exo_notification_previous
|
|
|
1545
1955
|
drawable exo_notification_rewind
|
|
1546
1956
|
drawable exo_notification_small_icon
|
|
1547
1957
|
drawable exo_notification_stop
|
|
1958
|
+
drawable exo_rounded_rectangle
|
|
1959
|
+
drawable exo_styled_controls_audiotrack
|
|
1960
|
+
drawable exo_styled_controls_check
|
|
1961
|
+
drawable exo_styled_controls_fastforward
|
|
1962
|
+
drawable exo_styled_controls_fullscreen_enter
|
|
1963
|
+
drawable exo_styled_controls_fullscreen_exit
|
|
1964
|
+
drawable exo_styled_controls_next
|
|
1965
|
+
drawable exo_styled_controls_overflow_hide
|
|
1966
|
+
drawable exo_styled_controls_overflow_show
|
|
1967
|
+
drawable exo_styled_controls_pause
|
|
1968
|
+
drawable exo_styled_controls_play
|
|
1969
|
+
drawable exo_styled_controls_previous
|
|
1970
|
+
drawable exo_styled_controls_repeat_all
|
|
1971
|
+
drawable exo_styled_controls_repeat_off
|
|
1972
|
+
drawable exo_styled_controls_repeat_one
|
|
1973
|
+
drawable exo_styled_controls_rewind
|
|
1974
|
+
drawable exo_styled_controls_settings
|
|
1975
|
+
drawable exo_styled_controls_shuffle_off
|
|
1976
|
+
drawable exo_styled_controls_shuffle_on
|
|
1977
|
+
drawable exo_styled_controls_speed
|
|
1978
|
+
drawable exo_styled_controls_subtitle_off
|
|
1979
|
+
drawable exo_styled_controls_subtitle_on
|
|
1980
|
+
drawable exo_styled_controls_vr
|
|
1548
1981
|
drawable googleg_disabled_color_18
|
|
1549
1982
|
drawable googleg_standard_color_18
|
|
1983
|
+
drawable ic_clock_black_24dp
|
|
1984
|
+
drawable ic_keyboard_black_24dp
|
|
1550
1985
|
drawable ic_mtrl_checked_circle
|
|
1551
1986
|
drawable ic_mtrl_chip_checked_black
|
|
1552
1987
|
drawable ic_mtrl_chip_checked_circle
|
|
1553
1988
|
drawable ic_mtrl_chip_close_circle
|
|
1989
|
+
drawable material_cursor_drawable
|
|
1554
1990
|
drawable material_ic_calendar_black_24dp
|
|
1555
1991
|
drawable material_ic_clear_black_24dp
|
|
1556
1992
|
drawable material_ic_edit_black_24dp
|
|
1557
1993
|
drawable material_ic_keyboard_arrow_left_black_24dp
|
|
1994
|
+
drawable material_ic_keyboard_arrow_next_black_24dp
|
|
1995
|
+
drawable material_ic_keyboard_arrow_previous_black_24dp
|
|
1558
1996
|
drawable material_ic_keyboard_arrow_right_black_24dp
|
|
1559
1997
|
drawable material_ic_menu_arrow_down_black_24dp
|
|
1560
1998
|
drawable material_ic_menu_arrow_up_black_24dp
|
|
@@ -1564,6 +2002,7 @@ drawable mtrl_ic_arrow_drop_down
|
|
|
1564
2002
|
drawable mtrl_ic_arrow_drop_up
|
|
1565
2003
|
drawable mtrl_ic_cancel
|
|
1566
2004
|
drawable mtrl_ic_error
|
|
2005
|
+
drawable mtrl_navigation_bar_item_background
|
|
1567
2006
|
drawable mtrl_popupmenu_background
|
|
1568
2007
|
drawable mtrl_popupmenu_background_dark
|
|
1569
2008
|
drawable mtrl_tabs_default_indicator
|
|
@@ -1583,10 +2022,16 @@ drawable notify_panel_notification_icon_bg
|
|
|
1583
2022
|
drawable test_custom_background
|
|
1584
2023
|
drawable tooltip_frame_dark
|
|
1585
2024
|
drawable tooltip_frame_light
|
|
2025
|
+
font roboto_medium_numbers
|
|
1586
2026
|
id BOTTOM_END
|
|
1587
2027
|
id BOTTOM_START
|
|
2028
|
+
id NO_DEBUG
|
|
2029
|
+
id SHOW_ALL
|
|
2030
|
+
id SHOW_PATH
|
|
2031
|
+
id SHOW_PROGRESS
|
|
1588
2032
|
id TOP_END
|
|
1589
2033
|
id TOP_START
|
|
2034
|
+
id accelerate
|
|
1590
2035
|
id accessibility_action_clickable_span
|
|
1591
2036
|
id accessibility_custom_action_0
|
|
1592
2037
|
id accessibility_custom_action_1
|
|
@@ -1644,14 +2089,25 @@ id add
|
|
|
1644
2089
|
id adjust_height
|
|
1645
2090
|
id adjust_width
|
|
1646
2091
|
id alertTitle
|
|
2092
|
+
id aligned
|
|
1647
2093
|
id always
|
|
2094
|
+
id animateToEnd
|
|
2095
|
+
id animateToStart
|
|
2096
|
+
id arc
|
|
2097
|
+
id asConfigured
|
|
1648
2098
|
id async
|
|
1649
2099
|
id auto
|
|
2100
|
+
id autoComplete
|
|
2101
|
+
id autoCompleteToEnd
|
|
2102
|
+
id autoCompleteToStart
|
|
1650
2103
|
id backgroundImage
|
|
2104
|
+
id barrier
|
|
2105
|
+
id baseline
|
|
1651
2106
|
id beginning
|
|
1652
2107
|
id blocking
|
|
1653
2108
|
id body_linear_layout
|
|
1654
2109
|
id bottom
|
|
2110
|
+
id bounce
|
|
1655
2111
|
id buttonPanel
|
|
1656
2112
|
id cancel_action
|
|
1657
2113
|
id cancel_button
|
|
@@ -1663,6 +2119,7 @@ id catalyst_redbox_title
|
|
|
1663
2119
|
id center
|
|
1664
2120
|
id centerCrop
|
|
1665
2121
|
id centerInside
|
|
2122
|
+
id chain
|
|
1666
2123
|
id checkbox
|
|
1667
2124
|
id checked
|
|
1668
2125
|
id chip
|
|
@@ -1671,15 +2128,20 @@ id chip2
|
|
|
1671
2128
|
id chip3
|
|
1672
2129
|
id chip_group
|
|
1673
2130
|
id chronometer
|
|
2131
|
+
id circle_center
|
|
1674
2132
|
id clear_text
|
|
1675
2133
|
id click_relative_layout
|
|
2134
|
+
id clockwise
|
|
1676
2135
|
id collapseActionView
|
|
1677
2136
|
id confirm_button
|
|
1678
2137
|
id container
|
|
1679
2138
|
id content
|
|
1680
2139
|
id contentPanel
|
|
1681
2140
|
id content_relative_layout
|
|
2141
|
+
id contiguous
|
|
1682
2142
|
id coordinator
|
|
2143
|
+
id cos
|
|
2144
|
+
id counterclockwise
|
|
1683
2145
|
id cover_button1
|
|
1684
2146
|
id cover_button2
|
|
1685
2147
|
id cover_image
|
|
@@ -1697,8 +2159,11 @@ id customPanel
|
|
|
1697
2159
|
id cut
|
|
1698
2160
|
id dark
|
|
1699
2161
|
id date_picker_actions
|
|
2162
|
+
id decelerate
|
|
2163
|
+
id decelerateAndComplete
|
|
1700
2164
|
id decor_content_parent
|
|
1701
2165
|
id default_activity_button
|
|
2166
|
+
id deltaRelative
|
|
1702
2167
|
id design_bottom_sheet
|
|
1703
2168
|
id design_menu_item_action_area
|
|
1704
2169
|
id design_menu_item_action_area_stub
|
|
@@ -1706,33 +2171,70 @@ id design_menu_item_text
|
|
|
1706
2171
|
id design_navigation_view
|
|
1707
2172
|
id dialog_button
|
|
1708
2173
|
id disableHome
|
|
2174
|
+
id disjoint
|
|
1709
2175
|
id div_view
|
|
2176
|
+
id dragDown
|
|
2177
|
+
id dragEnd
|
|
2178
|
+
id dragLeft
|
|
2179
|
+
id dragRight
|
|
2180
|
+
id dragStart
|
|
2181
|
+
id dragUp
|
|
1710
2182
|
id dropdown_menu
|
|
2183
|
+
id easeIn
|
|
2184
|
+
id easeInOut
|
|
2185
|
+
id easeOut
|
|
1711
2186
|
id edit_query
|
|
2187
|
+
id elastic
|
|
1712
2188
|
id end
|
|
2189
|
+
id endToStart
|
|
1713
2190
|
id end_padder
|
|
1714
2191
|
id exo_ad_overlay
|
|
1715
2192
|
id exo_artwork
|
|
2193
|
+
id exo_audio_track
|
|
2194
|
+
id exo_basic_controls
|
|
2195
|
+
id exo_bottom_bar
|
|
1716
2196
|
id exo_buffering
|
|
2197
|
+
id exo_center_controls
|
|
2198
|
+
id exo_check
|
|
1717
2199
|
id exo_content_frame
|
|
1718
2200
|
id exo_controller
|
|
1719
2201
|
id exo_controller_placeholder
|
|
2202
|
+
id exo_controls_background
|
|
1720
2203
|
id exo_duration
|
|
1721
2204
|
id exo_error_message
|
|
2205
|
+
id exo_extra_controls
|
|
2206
|
+
id exo_extra_controls_scroll_view
|
|
1722
2207
|
id exo_ffwd
|
|
2208
|
+
id exo_ffwd_with_amount
|
|
2209
|
+
id exo_fullscreen
|
|
2210
|
+
id exo_icon
|
|
2211
|
+
id exo_main_text
|
|
2212
|
+
id exo_minimal_controls
|
|
2213
|
+
id exo_minimal_fullscreen
|
|
1723
2214
|
id exo_next
|
|
2215
|
+
id exo_overflow_hide
|
|
2216
|
+
id exo_overflow_show
|
|
1724
2217
|
id exo_overlay
|
|
1725
2218
|
id exo_pause
|
|
1726
2219
|
id exo_play
|
|
2220
|
+
id exo_play_pause
|
|
2221
|
+
id exo_playback_speed
|
|
1727
2222
|
id exo_position
|
|
1728
2223
|
id exo_prev
|
|
1729
2224
|
id exo_progress
|
|
1730
2225
|
id exo_progress_placeholder
|
|
1731
2226
|
id exo_repeat_toggle
|
|
1732
2227
|
id exo_rew
|
|
2228
|
+
id exo_rew_with_amount
|
|
2229
|
+
id exo_settings
|
|
2230
|
+
id exo_settings_listview
|
|
1733
2231
|
id exo_shuffle
|
|
1734
2232
|
id exo_shutter
|
|
2233
|
+
id exo_sub_text
|
|
2234
|
+
id exo_subtitle
|
|
1735
2235
|
id exo_subtitles
|
|
2236
|
+
id exo_text
|
|
2237
|
+
id exo_time
|
|
1736
2238
|
id exo_track_selection_view
|
|
1737
2239
|
id exo_vr
|
|
1738
2240
|
id expand_activities_button
|
|
@@ -1748,6 +2250,7 @@ id fitXY
|
|
|
1748
2250
|
id fixed
|
|
1749
2251
|
id fixed_height
|
|
1750
2252
|
id fixed_width
|
|
2253
|
+
id flip
|
|
1751
2254
|
id floating
|
|
1752
2255
|
id focusCrop
|
|
1753
2256
|
id footer_button_1
|
|
@@ -1762,12 +2265,14 @@ id footer_relative_layout
|
|
|
1762
2265
|
id footer_title
|
|
1763
2266
|
id forever
|
|
1764
2267
|
id fps_text
|
|
2268
|
+
id fragment_container_view_tag
|
|
1765
2269
|
id ghost_view
|
|
1766
2270
|
id ghost_view_holder
|
|
1767
2271
|
id gifImage
|
|
1768
2272
|
id glide_custom_view_target_tag
|
|
1769
2273
|
id gone
|
|
1770
2274
|
id group_divider
|
|
2275
|
+
id guideline
|
|
1771
2276
|
id half_interstitial_button1
|
|
1772
2277
|
id half_interstitial_button2
|
|
1773
2278
|
id half_interstitial_image
|
|
@@ -1788,6 +2293,7 @@ id header_relative_layout
|
|
|
1788
2293
|
id header_title
|
|
1789
2294
|
id home
|
|
1790
2295
|
id homeAsUp
|
|
2296
|
+
id honorRequest
|
|
1791
2297
|
id icon
|
|
1792
2298
|
id icon_group
|
|
1793
2299
|
id icon_message_frame_layout
|
|
@@ -1795,6 +2301,8 @@ id icon_message_relative_layout
|
|
|
1795
2301
|
id icon_only
|
|
1796
2302
|
id icon_progress_frame_layout
|
|
1797
2303
|
id ifRoom
|
|
2304
|
+
id ignore
|
|
2305
|
+
id ignoreRequest
|
|
1798
2306
|
id image
|
|
1799
2307
|
id imageView
|
|
1800
2308
|
id image_carousel_viewpager
|
|
@@ -1820,14 +2328,20 @@ id interstitial_linear_layout
|
|
|
1820
2328
|
id interstitial_message
|
|
1821
2329
|
id interstitial_relative_layout
|
|
1822
2330
|
id interstitial_title
|
|
2331
|
+
id invisible
|
|
2332
|
+
id inward
|
|
1823
2333
|
id italic
|
|
1824
2334
|
id item_touch_helper_previous_elevation
|
|
2335
|
+
id jumpToEnd
|
|
2336
|
+
id jumpToStart
|
|
1825
2337
|
id labeled
|
|
1826
|
-
id
|
|
2338
|
+
id layout
|
|
1827
2339
|
id left
|
|
2340
|
+
id leftToRight
|
|
1828
2341
|
id light
|
|
1829
2342
|
id line1
|
|
1830
2343
|
id line3
|
|
2344
|
+
id linear
|
|
1831
2345
|
id listMode
|
|
1832
2346
|
id list_item
|
|
1833
2347
|
id list_view_fragment
|
|
@@ -1835,7 +2349,27 @@ id list_view_linear_layout
|
|
|
1835
2349
|
id list_view_no_message_view
|
|
1836
2350
|
id list_view_recycler_view
|
|
1837
2351
|
id masked
|
|
2352
|
+
id material_clock_display
|
|
2353
|
+
id material_clock_face
|
|
2354
|
+
id material_clock_hand
|
|
2355
|
+
id material_clock_period_am_button
|
|
2356
|
+
id material_clock_period_pm_button
|
|
2357
|
+
id material_clock_period_toggle
|
|
2358
|
+
id material_hour_text_input
|
|
2359
|
+
id material_hour_tv
|
|
2360
|
+
id material_label
|
|
2361
|
+
id material_minute_text_input
|
|
2362
|
+
id material_minute_tv
|
|
2363
|
+
id material_textinput_timepicker
|
|
2364
|
+
id material_timepicker_cancel_button
|
|
2365
|
+
id material_timepicker_container
|
|
2366
|
+
id material_timepicker_edit_text
|
|
2367
|
+
id material_timepicker_mode_button
|
|
2368
|
+
id material_timepicker_ok_button
|
|
2369
|
+
id material_timepicker_view
|
|
2370
|
+
id material_value_index
|
|
1838
2371
|
id media_actions
|
|
2372
|
+
id media_controller_compat_view_tag
|
|
1839
2373
|
id media_image
|
|
1840
2374
|
id media_layout
|
|
1841
2375
|
id message
|
|
@@ -1849,6 +2383,8 @@ id month_navigation_fragment_toggle
|
|
|
1849
2383
|
id month_navigation_next
|
|
1850
2384
|
id month_navigation_previous
|
|
1851
2385
|
id month_title
|
|
2386
|
+
id motion_base
|
|
2387
|
+
id mtrl_anchor_parent
|
|
1852
2388
|
id mtrl_calendar_day_selector_frame
|
|
1853
2389
|
id mtrl_calendar_days_of_week
|
|
1854
2390
|
id mtrl_calendar_frame
|
|
@@ -1870,7 +2406,12 @@ id mtrl_picker_text_input_date
|
|
|
1870
2406
|
id mtrl_picker_text_input_range_end
|
|
1871
2407
|
id mtrl_picker_text_input_range_start
|
|
1872
2408
|
id mtrl_picker_title_text
|
|
2409
|
+
id mtrl_view_tag_bottom_padding
|
|
1873
2410
|
id multiply
|
|
2411
|
+
id navigation_bar_item_icon_view
|
|
2412
|
+
id navigation_bar_item_labels_group
|
|
2413
|
+
id navigation_bar_item_large_label_view
|
|
2414
|
+
id navigation_bar_item_small_label_view
|
|
1874
2415
|
id navigation_header_container
|
|
1875
2416
|
id never
|
|
1876
2417
|
id no_message_view
|
|
@@ -1882,17 +2423,29 @@ id notification_main_column_container
|
|
|
1882
2423
|
id off
|
|
1883
2424
|
id on
|
|
1884
2425
|
id outline
|
|
2426
|
+
id outward
|
|
2427
|
+
id packed
|
|
1885
2428
|
id parallax
|
|
2429
|
+
id parent
|
|
1886
2430
|
id parentPanel
|
|
2431
|
+
id parentRelative
|
|
1887
2432
|
id parent_matrix
|
|
1888
2433
|
id password_toggle
|
|
2434
|
+
id path
|
|
2435
|
+
id pathRelative
|
|
2436
|
+
id percent
|
|
1889
2437
|
id pin
|
|
2438
|
+
id position
|
|
2439
|
+
id postLayout
|
|
1890
2440
|
id progress_circular
|
|
1891
2441
|
id progress_horizontal
|
|
1892
2442
|
id radio
|
|
1893
2443
|
id react_test_id
|
|
1894
2444
|
id read_circle
|
|
2445
|
+
id rectangles
|
|
2446
|
+
id reverseSawtooth
|
|
1895
2447
|
id right
|
|
2448
|
+
id rightToLeft
|
|
1896
2449
|
id right_icon
|
|
1897
2450
|
id right_side
|
|
1898
2451
|
id rn_frame_file
|
|
@@ -1909,6 +2462,7 @@ id rounded
|
|
|
1909
2462
|
id row_index_key
|
|
1910
2463
|
id save_non_transition_alpha
|
|
1911
2464
|
id save_overlay_view
|
|
2465
|
+
id sawtooth
|
|
1912
2466
|
id scale
|
|
1913
2467
|
id screen
|
|
1914
2468
|
id scrollIndicatorDown
|
|
@@ -1927,6 +2481,7 @@ id search_src_text
|
|
|
1927
2481
|
id search_voice_btn
|
|
1928
2482
|
id select_dialog_listview
|
|
1929
2483
|
id selected
|
|
2484
|
+
id selection_type
|
|
1930
2485
|
id shortcut
|
|
1931
2486
|
id showCustom
|
|
1932
2487
|
id showHome
|
|
@@ -1934,14 +2489,19 @@ id showTitle
|
|
|
1934
2489
|
id simple_message_frame_layout
|
|
1935
2490
|
id simple_message_relative_layout
|
|
1936
2491
|
id simple_progress_frame_layout
|
|
2492
|
+
id sin
|
|
1937
2493
|
id slide
|
|
1938
2494
|
id sliderDots
|
|
1939
|
-
id smallLabel
|
|
1940
2495
|
id snackbar_action
|
|
1941
2496
|
id snackbar_text
|
|
1942
2497
|
id spacer
|
|
2498
|
+
id special_effects_controller_view_tag
|
|
1943
2499
|
id spherical_gl_surface_view
|
|
2500
|
+
id spline
|
|
1944
2501
|
id split_action_bar
|
|
2502
|
+
id spread
|
|
2503
|
+
id spread_inside
|
|
2504
|
+
id square
|
|
1945
2505
|
id squareImageView
|
|
1946
2506
|
id square_media_image
|
|
1947
2507
|
id src_atop
|
|
@@ -1949,7 +2509,13 @@ id src_in
|
|
|
1949
2509
|
id src_over
|
|
1950
2510
|
id standard
|
|
1951
2511
|
id start
|
|
2512
|
+
id startHorizontal
|
|
2513
|
+
id startToEnd
|
|
2514
|
+
id startVertical
|
|
2515
|
+
id staticLayout
|
|
2516
|
+
id staticPostLayout
|
|
1952
2517
|
id status_bar_latest_event_content
|
|
2518
|
+
id stop
|
|
1953
2519
|
id stretch
|
|
1954
2520
|
id submenuarrow
|
|
1955
2521
|
id submit_area
|
|
@@ -1960,10 +2526,15 @@ id tag_accessibility_actions
|
|
|
1960
2526
|
id tag_accessibility_clickable_spans
|
|
1961
2527
|
id tag_accessibility_heading
|
|
1962
2528
|
id tag_accessibility_pane_title
|
|
2529
|
+
id tag_on_apply_window_listener
|
|
2530
|
+
id tag_on_receive_content_listener
|
|
2531
|
+
id tag_on_receive_content_mime_types
|
|
1963
2532
|
id tag_screen_reader_focusable
|
|
2533
|
+
id tag_state_description
|
|
1964
2534
|
id tag_transition_group
|
|
1965
2535
|
id tag_unhandled_key_event_manager
|
|
1966
2536
|
id tag_unhandled_key_listeners
|
|
2537
|
+
id tag_window_insets_animation_callback
|
|
1967
2538
|
id template_layout
|
|
1968
2539
|
id test_checkbox_android_button_tint
|
|
1969
2540
|
id test_checkbox_app_button_tint
|
|
@@ -1974,6 +2545,7 @@ id text2
|
|
|
1974
2545
|
id textSpacerNoButtons
|
|
1975
2546
|
id textSpacerNoTitle
|
|
1976
2547
|
id text_input_end_icon
|
|
2548
|
+
id text_input_error_icon
|
|
1977
2549
|
id text_input_start_icon
|
|
1978
2550
|
id textinput_counter
|
|
1979
2551
|
id textinput_error
|
|
@@ -1998,6 +2570,7 @@ id transition_layout_save
|
|
|
1998
2570
|
id transition_position
|
|
1999
2571
|
id transition_scene_layoutid_cache
|
|
2000
2572
|
id transition_transform
|
|
2573
|
+
id triangle
|
|
2001
2574
|
id unchecked
|
|
2002
2575
|
id uniform
|
|
2003
2576
|
id unlabeled
|
|
@@ -2008,11 +2581,16 @@ id video_frame
|
|
|
2008
2581
|
id view_offset_helper
|
|
2009
2582
|
id view_pager
|
|
2010
2583
|
id view_tag_native_id
|
|
2584
|
+
id view_tree_lifecycle_owner
|
|
2585
|
+
id view_tree_saved_state_registry_owner
|
|
2586
|
+
id view_tree_view_model_store_owner
|
|
2011
2587
|
id visible
|
|
2588
|
+
id visible_removing_fragment_view_tag
|
|
2012
2589
|
id when_playing
|
|
2013
2590
|
id wide
|
|
2014
2591
|
id withText
|
|
2015
2592
|
id withinBounds
|
|
2593
|
+
id wrap
|
|
2016
2594
|
id wrap_content
|
|
2017
2595
|
id zero_corner_chip
|
|
2018
2596
|
id zoom
|
|
@@ -2029,6 +2607,13 @@ integer exo_media_button_opacity_percentage_disabled
|
|
|
2029
2607
|
integer exo_media_button_opacity_percentage_enabled
|
|
2030
2608
|
integer google_play_services_version
|
|
2031
2609
|
integer hide_password_duration
|
|
2610
|
+
integer material_motion_duration_long_1
|
|
2611
|
+
integer material_motion_duration_long_2
|
|
2612
|
+
integer material_motion_duration_medium_1
|
|
2613
|
+
integer material_motion_duration_medium_2
|
|
2614
|
+
integer material_motion_duration_short_1
|
|
2615
|
+
integer material_motion_duration_short_2
|
|
2616
|
+
integer material_motion_path
|
|
2032
2617
|
integer mtrl_badge_max_character_count
|
|
2033
2618
|
integer mtrl_btn_anim_delay_ms
|
|
2034
2619
|
integer mtrl_btn_anim_duration_ms
|
|
@@ -2099,10 +2684,15 @@ layout design_text_input_end_icon
|
|
|
2099
2684
|
layout design_text_input_start_icon
|
|
2100
2685
|
layout dev_loading_view
|
|
2101
2686
|
layout exo_list_divider
|
|
2102
|
-
layout exo_playback_control_view
|
|
2103
2687
|
layout exo_player_control_view
|
|
2104
2688
|
layout exo_player_view
|
|
2105
|
-
layout
|
|
2689
|
+
layout exo_styled_player_control_ffwd_button
|
|
2690
|
+
layout exo_styled_player_control_rewind_button
|
|
2691
|
+
layout exo_styled_player_control_view
|
|
2692
|
+
layout exo_styled_player_view
|
|
2693
|
+
layout exo_styled_settings_list
|
|
2694
|
+
layout exo_styled_settings_list_item
|
|
2695
|
+
layout exo_styled_sub_settings_list_item
|
|
2106
2696
|
layout exo_track_selection_dialog
|
|
2107
2697
|
layout fps_view
|
|
2108
2698
|
layout inapp_activity
|
|
@@ -2124,6 +2714,20 @@ layout inbox_carousel_text_layout
|
|
|
2124
2714
|
layout inbox_icon_message_layout
|
|
2125
2715
|
layout inbox_list_view
|
|
2126
2716
|
layout inbox_simple_message_layout
|
|
2717
|
+
layout material_chip_input_combo
|
|
2718
|
+
layout material_clock_display
|
|
2719
|
+
layout material_clock_display_divider
|
|
2720
|
+
layout material_clock_period_toggle
|
|
2721
|
+
layout material_clock_period_toggle_land
|
|
2722
|
+
layout material_clockface_textview
|
|
2723
|
+
layout material_clockface_view
|
|
2724
|
+
layout material_radial_view_group
|
|
2725
|
+
layout material_textinput_timepicker
|
|
2726
|
+
layout material_time_chip
|
|
2727
|
+
layout material_time_input
|
|
2728
|
+
layout material_timepicker
|
|
2729
|
+
layout material_timepicker_dialog
|
|
2730
|
+
layout material_timepicker_textinput_display
|
|
2127
2731
|
layout mtrl_alert_dialog
|
|
2128
2732
|
layout mtrl_alert_dialog_actions
|
|
2129
2733
|
layout mtrl_alert_dialog_title
|
|
@@ -2142,6 +2746,7 @@ layout mtrl_calendar_vertical
|
|
|
2142
2746
|
layout mtrl_calendar_year
|
|
2143
2747
|
layout mtrl_layout_snackbar
|
|
2144
2748
|
layout mtrl_layout_snackbar_include
|
|
2749
|
+
layout mtrl_navigation_rail_item
|
|
2145
2750
|
layout mtrl_picker_actions
|
|
2146
2751
|
layout mtrl_picker_dialog
|
|
2147
2752
|
layout mtrl_picker_fullscreen
|
|
@@ -2183,6 +2788,7 @@ layout test_action_chip
|
|
|
2183
2788
|
layout test_chip_zero_corner_radius
|
|
2184
2789
|
layout test_design_checkbox
|
|
2185
2790
|
layout test_design_radiobutton
|
|
2791
|
+
layout test_navigation_bar_item_layout
|
|
2186
2792
|
layout test_reflow_chipgroup
|
|
2187
2793
|
layout test_toolbar
|
|
2188
2794
|
layout test_toolbar_custom_background
|
|
@@ -2193,6 +2799,8 @@ layout text_view_with_line_height_from_layout
|
|
|
2193
2799
|
layout text_view_with_line_height_from_style
|
|
2194
2800
|
layout text_view_with_theme_line_height
|
|
2195
2801
|
layout text_view_without_line_height
|
|
2802
|
+
plurals exo_controls_fastforward_by_amount_description
|
|
2803
|
+
plurals exo_controls_rewind_by_amount_description
|
|
2196
2804
|
plurals mtrl_badge_content_description
|
|
2197
2805
|
string abc_action_bar_home_description
|
|
2198
2806
|
string abc_action_bar_home_description_format
|
|
@@ -2225,6 +2833,7 @@ string abc_shareactionprovider_share_with_application
|
|
|
2225
2833
|
string abc_toolbar_collapse_description
|
|
2226
2834
|
string appbar_scrolling_view_behavior
|
|
2227
2835
|
string bottom_sheet_behavior
|
|
2836
|
+
string bottomsheet_action_expand_halfway
|
|
2228
2837
|
string catalyst_copy_button
|
|
2229
2838
|
string catalyst_debugjs
|
|
2230
2839
|
string catalyst_debugjs_off
|
|
@@ -2271,21 +2880,32 @@ string common_open_on_phone
|
|
|
2271
2880
|
string common_signin_button_text
|
|
2272
2881
|
string common_signin_button_text_long
|
|
2273
2882
|
string error_icon_content_description
|
|
2883
|
+
string exo_controls_cc_disabled_description
|
|
2884
|
+
string exo_controls_cc_enabled_description
|
|
2885
|
+
string exo_controls_custom_playback_speed
|
|
2274
2886
|
string exo_controls_fastforward_description
|
|
2275
|
-
string
|
|
2887
|
+
string exo_controls_fullscreen_enter_description
|
|
2888
|
+
string exo_controls_fullscreen_exit_description
|
|
2276
2889
|
string exo_controls_hide
|
|
2277
2890
|
string exo_controls_next_description
|
|
2891
|
+
string exo_controls_overflow_hide_description
|
|
2892
|
+
string exo_controls_overflow_show_description
|
|
2278
2893
|
string exo_controls_pause_description
|
|
2279
2894
|
string exo_controls_play_description
|
|
2895
|
+
string exo_controls_playback_speed
|
|
2896
|
+
string exo_controls_playback_speed_normal
|
|
2280
2897
|
string exo_controls_previous_description
|
|
2281
2898
|
string exo_controls_repeat_all_description
|
|
2282
2899
|
string exo_controls_repeat_off_description
|
|
2283
2900
|
string exo_controls_repeat_one_description
|
|
2284
2901
|
string exo_controls_rewind_description
|
|
2902
|
+
string exo_controls_seek_bar_description
|
|
2903
|
+
string exo_controls_settings_description
|
|
2285
2904
|
string exo_controls_show
|
|
2286
2905
|
string exo_controls_shuffle_off_description
|
|
2287
2906
|
string exo_controls_shuffle_on_description
|
|
2288
2907
|
string exo_controls_stop_description
|
|
2908
|
+
string exo_controls_time_placeholder
|
|
2289
2909
|
string exo_controls_vr_description
|
|
2290
2910
|
string exo_download_completed
|
|
2291
2911
|
string exo_download_description
|
|
@@ -2318,8 +2938,26 @@ string fcm_fallback_notification_channel_label
|
|
|
2318
2938
|
string hide_bottom_view_on_scroll_behavior
|
|
2319
2939
|
string icon_content_description
|
|
2320
2940
|
string item_view_role_description
|
|
2941
|
+
string material_clock_display_divider
|
|
2942
|
+
string material_clock_toggle_content_description
|
|
2943
|
+
string material_hour_selection
|
|
2944
|
+
string material_hour_suffix
|
|
2945
|
+
string material_minute_selection
|
|
2946
|
+
string material_minute_suffix
|
|
2947
|
+
string material_motion_easing_accelerated
|
|
2948
|
+
string material_motion_easing_decelerated
|
|
2949
|
+
string material_motion_easing_emphasized
|
|
2950
|
+
string material_motion_easing_linear
|
|
2951
|
+
string material_motion_easing_standard
|
|
2321
2952
|
string material_slider_range_end
|
|
2322
2953
|
string material_slider_range_start
|
|
2954
|
+
string material_timepicker_am
|
|
2955
|
+
string material_timepicker_clock_mode_description
|
|
2956
|
+
string material_timepicker_hour
|
|
2957
|
+
string material_timepicker_minute
|
|
2958
|
+
string material_timepicker_pm
|
|
2959
|
+
string material_timepicker_select_time
|
|
2960
|
+
string material_timepicker_text_input_mode_description
|
|
2323
2961
|
string mtrl_badge_numberless_content_description
|
|
2324
2962
|
string mtrl_chip_close_icon_content_description
|
|
2325
2963
|
string mtrl_exceed_max_badge_number_content_description
|
|
@@ -2483,6 +3121,7 @@ style Base_V11_Theme_AppCompat_Dialog
|
|
|
2483
3121
|
style Base_V11_Theme_AppCompat_Light_Dialog
|
|
2484
3122
|
style Base_V12_Widget_AppCompat_AutoCompleteTextView
|
|
2485
3123
|
style Base_V12_Widget_AppCompat_EditText
|
|
3124
|
+
style Base_V14_ThemeOverlay_MaterialComponents_BottomSheetDialog
|
|
2486
3125
|
style Base_V14_ThemeOverlay_MaterialComponents_Dialog
|
|
2487
3126
|
style Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert
|
|
2488
3127
|
style Base_V14_ThemeOverlay_MaterialComponents_MaterialAlertDialog
|
|
@@ -2496,6 +3135,7 @@ style Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge
|
|
|
2496
3135
|
style Base_V14_Theme_MaterialComponents_Light_Dialog
|
|
2497
3136
|
style Base_V14_Theme_MaterialComponents_Light_Dialog_Bridge
|
|
2498
3137
|
style Base_V21_ThemeOverlay_AppCompat_Dialog
|
|
3138
|
+
style Base_V21_ThemeOverlay_MaterialComponents_BottomSheetDialog
|
|
2499
3139
|
style Base_V21_Theme_AppCompat
|
|
2500
3140
|
style Base_V21_Theme_AppCompat_Dialog
|
|
2501
3141
|
style Base_V21_Theme_AppCompat_Light
|
|
@@ -2583,11 +3223,13 @@ style Base_Widget_Design_TabLayout
|
|
|
2583
3223
|
style Base_Widget_MaterialComponents_AutoCompleteTextView
|
|
2584
3224
|
style Base_Widget_MaterialComponents_CheckedTextView
|
|
2585
3225
|
style Base_Widget_MaterialComponents_Chip
|
|
3226
|
+
style Base_Widget_MaterialComponents_MaterialCalendar_NavigationButton
|
|
2586
3227
|
style Base_Widget_MaterialComponents_PopupMenu
|
|
2587
3228
|
style Base_Widget_MaterialComponents_PopupMenu_ContextMenu
|
|
2588
3229
|
style Base_Widget_MaterialComponents_PopupMenu_ListPopupWindow
|
|
2589
3230
|
style Base_Widget_MaterialComponents_PopupMenu_Overflow
|
|
2590
3231
|
style Base_Widget_MaterialComponents_Slider
|
|
3232
|
+
style Base_Widget_MaterialComponents_Snackbar
|
|
2591
3233
|
style Base_Widget_MaterialComponents_TextInputEditText
|
|
2592
3234
|
style Base_Widget_MaterialComponents_TextInputLayout
|
|
2593
3235
|
style Base_Widget_MaterialComponents_TextView
|
|
@@ -2607,6 +3249,31 @@ style ExoMediaButton_Play
|
|
|
2607
3249
|
style ExoMediaButton_Previous
|
|
2608
3250
|
style ExoMediaButton_Rewind
|
|
2609
3251
|
style ExoMediaButton_VR
|
|
3252
|
+
style ExoStyledControls
|
|
3253
|
+
style ExoStyledControls_Button
|
|
3254
|
+
style ExoStyledControls_ButtonText
|
|
3255
|
+
style ExoStyledControls_Button_Bottom
|
|
3256
|
+
style ExoStyledControls_Button_Bottom_AudioTrack
|
|
3257
|
+
style ExoStyledControls_Button_Bottom_CC
|
|
3258
|
+
style ExoStyledControls_Button_Bottom_FullScreen
|
|
3259
|
+
style ExoStyledControls_Button_Bottom_OverflowHide
|
|
3260
|
+
style ExoStyledControls_Button_Bottom_OverflowShow
|
|
3261
|
+
style ExoStyledControls_Button_Bottom_PlaybackSpeed
|
|
3262
|
+
style ExoStyledControls_Button_Bottom_RepeatToggle
|
|
3263
|
+
style ExoStyledControls_Button_Bottom_Settings
|
|
3264
|
+
style ExoStyledControls_Button_Bottom_Shuffle
|
|
3265
|
+
style ExoStyledControls_Button_Bottom_VR
|
|
3266
|
+
style ExoStyledControls_Button_Center
|
|
3267
|
+
style ExoStyledControls_Button_Center_FfwdWithAmount
|
|
3268
|
+
style ExoStyledControls_Button_Center_Next
|
|
3269
|
+
style ExoStyledControls_Button_Center_PlayPause
|
|
3270
|
+
style ExoStyledControls_Button_Center_Previous
|
|
3271
|
+
style ExoStyledControls_Button_Center_RewWithAmount
|
|
3272
|
+
style ExoStyledControls_TimeBar
|
|
3273
|
+
style ExoStyledControls_TimeText
|
|
3274
|
+
style ExoStyledControls_TimeText_Duration
|
|
3275
|
+
style ExoStyledControls_TimeText_Position
|
|
3276
|
+
style ExoStyledControls_TimeText_Separator
|
|
2610
3277
|
style MaterialAlertDialog_MaterialComponents
|
|
2611
3278
|
style MaterialAlertDialog_MaterialComponents_Body_Text
|
|
2612
3279
|
style MaterialAlertDialog_MaterialComponents_Picker_Date_Calendar
|
|
@@ -2771,6 +3438,7 @@ style TextAppearance_MaterialComponents_Headline6
|
|
|
2771
3438
|
style TextAppearance_MaterialComponents_Overline
|
|
2772
3439
|
style TextAppearance_MaterialComponents_Subtitle1
|
|
2773
3440
|
style TextAppearance_MaterialComponents_Subtitle2
|
|
3441
|
+
style TextAppearance_MaterialComponents_TimePicker_Title
|
|
2774
3442
|
style TextAppearance_MaterialComponents_Tooltip
|
|
2775
3443
|
style TextAppearance_StatusBar_EventContent
|
|
2776
3444
|
style TextAppearance_StatusBar_EventContent_Info
|
|
@@ -2811,7 +3479,6 @@ style ThemeOverlay_MaterialComponents_Dialog
|
|
|
2811
3479
|
style ThemeOverlay_MaterialComponents_Dialog_Alert
|
|
2812
3480
|
style ThemeOverlay_MaterialComponents_Dialog_Alert_Framework
|
|
2813
3481
|
style ThemeOverlay_MaterialComponents_Light
|
|
2814
|
-
style ThemeOverlay_MaterialComponents_Light_BottomSheetDialog
|
|
2815
3482
|
style ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework
|
|
2816
3483
|
style ThemeOverlay_MaterialComponents_MaterialAlertDialog
|
|
2817
3484
|
style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Centered
|
|
@@ -2827,6 +3494,8 @@ style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox
|
|
|
2827
3494
|
style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense
|
|
2828
3495
|
style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox
|
|
2829
3496
|
style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense
|
|
3497
|
+
style ThemeOverlay_MaterialComponents_TimePicker
|
|
3498
|
+
style ThemeOverlay_MaterialComponents_TimePicker_Display
|
|
2830
3499
|
style ThemeOverlay_MaterialComponents_Toolbar_Primary
|
|
2831
3500
|
style ThemeOverlay_MaterialComponents_Toolbar_Surface
|
|
2832
3501
|
style Theme_AppCompat
|
|
@@ -3038,6 +3707,11 @@ style Widget_MaterialComponents_Chip_Action
|
|
|
3038
3707
|
style Widget_MaterialComponents_Chip_Choice
|
|
3039
3708
|
style Widget_MaterialComponents_Chip_Entry
|
|
3040
3709
|
style Widget_MaterialComponents_Chip_Filter
|
|
3710
|
+
style Widget_MaterialComponents_CircularProgressIndicator
|
|
3711
|
+
style Widget_MaterialComponents_CircularProgressIndicator_ExtraSmall
|
|
3712
|
+
style Widget_MaterialComponents_CircularProgressIndicator_Medium
|
|
3713
|
+
style Widget_MaterialComponents_CircularProgressIndicator_Small
|
|
3714
|
+
style Widget_MaterialComponents_CollapsingToolbar
|
|
3041
3715
|
style Widget_MaterialComponents_CompoundButton_CheckBox
|
|
3042
3716
|
style Widget_MaterialComponents_CompoundButton_RadioButton
|
|
3043
3717
|
style Widget_MaterialComponents_CompoundButton_Switch
|
|
@@ -3045,6 +3719,7 @@ style Widget_MaterialComponents_ExtendedFloatingActionButton
|
|
|
3045
3719
|
style Widget_MaterialComponents_ExtendedFloatingActionButton_Icon
|
|
3046
3720
|
style Widget_MaterialComponents_FloatingActionButton
|
|
3047
3721
|
style Widget_MaterialComponents_Light_ActionBar_Solid
|
|
3722
|
+
style Widget_MaterialComponents_LinearProgressIndicator
|
|
3048
3723
|
style Widget_MaterialComponents_MaterialButtonToggleGroup
|
|
3049
3724
|
style Widget_MaterialComponents_MaterialCalendar
|
|
3050
3725
|
style Widget_MaterialComponents_MaterialCalendar_Day
|
|
@@ -3053,6 +3728,7 @@ style Widget_MaterialComponents_MaterialCalendar_Day_Invalid
|
|
|
3053
3728
|
style Widget_MaterialComponents_MaterialCalendar_Day_Selected
|
|
3054
3729
|
style Widget_MaterialComponents_MaterialCalendar_Day_Today
|
|
3055
3730
|
style Widget_MaterialComponents_MaterialCalendar_Fullscreen
|
|
3731
|
+
style Widget_MaterialComponents_MaterialCalendar_HeaderCancelButton
|
|
3056
3732
|
style Widget_MaterialComponents_MaterialCalendar_HeaderConfirmButton
|
|
3057
3733
|
style Widget_MaterialComponents_MaterialCalendar_HeaderDivider
|
|
3058
3734
|
style Widget_MaterialComponents_MaterialCalendar_HeaderLayout
|
|
@@ -3061,14 +3737,23 @@ style Widget_MaterialComponents_MaterialCalendar_HeaderSelection_Fullscreen
|
|
|
3061
3737
|
style Widget_MaterialComponents_MaterialCalendar_HeaderTitle
|
|
3062
3738
|
style Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton
|
|
3063
3739
|
style Widget_MaterialComponents_MaterialCalendar_Item
|
|
3740
|
+
style Widget_MaterialComponents_MaterialCalendar_MonthNavigationButton
|
|
3741
|
+
style Widget_MaterialComponents_MaterialCalendar_MonthTextView
|
|
3064
3742
|
style Widget_MaterialComponents_MaterialCalendar_Year
|
|
3743
|
+
style Widget_MaterialComponents_MaterialCalendar_YearNavigationButton
|
|
3065
3744
|
style Widget_MaterialComponents_MaterialCalendar_Year_Selected
|
|
3066
3745
|
style Widget_MaterialComponents_MaterialCalendar_Year_Today
|
|
3746
|
+
style Widget_MaterialComponents_NavigationRailView
|
|
3747
|
+
style Widget_MaterialComponents_NavigationRailView_Colored
|
|
3748
|
+
style Widget_MaterialComponents_NavigationRailView_Colored_Compact
|
|
3749
|
+
style Widget_MaterialComponents_NavigationRailView_Compact
|
|
3750
|
+
style Widget_MaterialComponents_NavigationRailView_PrimarySurface
|
|
3067
3751
|
style Widget_MaterialComponents_NavigationView
|
|
3068
3752
|
style Widget_MaterialComponents_PopupMenu
|
|
3069
3753
|
style Widget_MaterialComponents_PopupMenu_ContextMenu
|
|
3070
3754
|
style Widget_MaterialComponents_PopupMenu_ListPopupWindow
|
|
3071
3755
|
style Widget_MaterialComponents_PopupMenu_Overflow
|
|
3756
|
+
style Widget_MaterialComponents_ProgressIndicator
|
|
3072
3757
|
style Widget_MaterialComponents_ShapeableImageView
|
|
3073
3758
|
style Widget_MaterialComponents_Slider
|
|
3074
3759
|
style Widget_MaterialComponents_Snackbar
|
|
@@ -3090,6 +3775,13 @@ style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense
|
|
|
3090
3775
|
style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu
|
|
3091
3776
|
style Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu
|
|
3092
3777
|
style Widget_MaterialComponents_TextView
|
|
3778
|
+
style Widget_MaterialComponents_TimePicker
|
|
3779
|
+
style Widget_MaterialComponents_TimePicker_Button
|
|
3780
|
+
style Widget_MaterialComponents_TimePicker_Clock
|
|
3781
|
+
style Widget_MaterialComponents_TimePicker_Display
|
|
3782
|
+
style Widget_MaterialComponents_TimePicker_Display_TextInputEditText
|
|
3783
|
+
style Widget_MaterialComponents_TimePicker_ImageButton
|
|
3784
|
+
style Widget_MaterialComponents_TimePicker_ImageButton_ShapeAppearance
|
|
3093
3785
|
style Widget_MaterialComponents_Toolbar
|
|
3094
3786
|
style Widget_MaterialComponents_Toolbar_Primary
|
|
3095
3787
|
style Widget_MaterialComponents_Toolbar_PrimarySurface
|
|
@@ -3113,38 +3805,57 @@ styleable AppCompatImageView android_src srcCompat tint tintMode
|
|
|
3113
3805
|
styleable AppCompatSeekBar android_thumb tickMark tickMarkTint tickMarkTintMode
|
|
3114
3806
|
styleable AppCompatTextHelper android_drawableBottom android_drawableEnd android_drawableLeft android_drawableRight android_drawableStart android_drawableTop android_textAppearance
|
|
3115
3807
|
styleable AppCompatTextView android_textAppearance autoSizeMaxTextSize autoSizeMinTextSize autoSizePresetSizes autoSizeStepGranularity autoSizeTextType drawableBottomCompat drawableEndCompat drawableLeftCompat drawableRightCompat drawableStartCompat drawableTint drawableTintMode drawableTopCompat firstBaselineToTopHeight fontFamily fontVariationSettings lastBaselineToBottomHeight lineHeight textAllCaps textLocale
|
|
3116
|
-
styleable AppCompatTheme actionBarDivider actionBarItemBackground actionBarPopupTheme actionBarSize actionBarSplitStyle actionBarStyle actionBarTabBarStyle actionBarTabStyle actionBarTabTextStyle actionBarTheme actionBarWidgetTheme actionButtonStyle actionDropDownStyle actionMenuTextAppearance actionMenuTextColor actionModeBackground actionModeCloseButtonStyle actionModeCloseDrawable actionModeCopyDrawable actionModeCutDrawable actionModeFindDrawable actionModePasteDrawable actionModePopupWindowStyle actionModeSelectAllDrawable actionModeShareDrawable actionModeSplitBackground actionModeStyle actionModeWebSearchDrawable actionOverflowButtonStyle actionOverflowMenuStyle activityChooserViewStyle alertDialogButtonGroupStyle alertDialogCenterButtons alertDialogStyle alertDialogTheme android_windowAnimationStyle android_windowIsFloating autoCompleteTextViewStyle borderlessButtonStyle buttonBarButtonStyle buttonBarNegativeButtonStyle buttonBarNeutralButtonStyle buttonBarPositiveButtonStyle buttonBarStyle buttonStyle buttonStyleSmall checkboxStyle checkedTextViewStyle colorAccent colorBackgroundFloating colorButtonNormal colorControlActivated colorControlHighlight colorControlNormal colorError colorPrimary colorPrimaryDark colorSwitchThumbNormal controlBackground dialogCornerRadius dialogPreferredPadding dialogTheme dividerHorizontal dividerVertical dropDownListViewStyle dropdownListPreferredItemHeight editTextBackground editTextColor editTextStyle homeAsUpIndicator imageButtonStyle listChoiceBackgroundIndicator listChoiceIndicatorMultipleAnimated listChoiceIndicatorSingleAnimated listDividerAlertDialog listMenuViewStyle listPopupWindowStyle listPreferredItemHeight listPreferredItemHeightLarge listPreferredItemHeightSmall listPreferredItemPaddingEnd listPreferredItemPaddingLeft listPreferredItemPaddingRight listPreferredItemPaddingStart panelBackground panelMenuListTheme panelMenuListWidth popupMenuStyle popupWindowStyle radioButtonStyle ratingBarStyle ratingBarStyleIndicator ratingBarStyleSmall searchViewStyle seekBarStyle selectableItemBackground selectableItemBackgroundBorderless spinnerDropDownItemStyle spinnerStyle switchStyle textAppearanceLargePopupMenu textAppearanceListItem textAppearanceListItemSecondary textAppearanceListItemSmall textAppearancePopupMenuHeader textAppearanceSearchResultSubtitle textAppearanceSearchResultTitle textAppearanceSmallPopupMenu textColorAlertDialogListItem textColorSearchUrl toolbarNavigationButtonStyle toolbarStyle tooltipForegroundColor tooltipFrameBackground viewInflaterClass windowActionBar windowActionBarOverlay windowActionModeOverlay windowFixedHeightMajor windowFixedHeightMinor windowFixedWidthMajor windowFixedWidthMinor windowMinWidthMajor windowMinWidthMinor windowNoTitle
|
|
3808
|
+
styleable AppCompatTheme actionBarDivider actionBarItemBackground actionBarPopupTheme actionBarSize actionBarSplitStyle actionBarStyle actionBarTabBarStyle actionBarTabStyle actionBarTabTextStyle actionBarTheme actionBarWidgetTheme actionButtonStyle actionDropDownStyle actionMenuTextAppearance actionMenuTextColor actionModeBackground actionModeCloseButtonStyle actionModeCloseContentDescription actionModeCloseDrawable actionModeCopyDrawable actionModeCutDrawable actionModeFindDrawable actionModePasteDrawable actionModePopupWindowStyle actionModeSelectAllDrawable actionModeShareDrawable actionModeSplitBackground actionModeStyle actionModeTheme actionModeWebSearchDrawable actionOverflowButtonStyle actionOverflowMenuStyle activityChooserViewStyle alertDialogButtonGroupStyle alertDialogCenterButtons alertDialogStyle alertDialogTheme android_windowAnimationStyle android_windowIsFloating autoCompleteTextViewStyle borderlessButtonStyle buttonBarButtonStyle buttonBarNegativeButtonStyle buttonBarNeutralButtonStyle buttonBarPositiveButtonStyle buttonBarStyle buttonStyle buttonStyleSmall checkboxStyle checkedTextViewStyle colorAccent colorBackgroundFloating colorButtonNormal colorControlActivated colorControlHighlight colorControlNormal colorError colorPrimary colorPrimaryDark colorSwitchThumbNormal controlBackground dialogCornerRadius dialogPreferredPadding dialogTheme dividerHorizontal dividerVertical dropDownListViewStyle dropdownListPreferredItemHeight editTextBackground editTextColor editTextStyle homeAsUpIndicator imageButtonStyle listChoiceBackgroundIndicator listChoiceIndicatorMultipleAnimated listChoiceIndicatorSingleAnimated listDividerAlertDialog listMenuViewStyle listPopupWindowStyle listPreferredItemHeight listPreferredItemHeightLarge listPreferredItemHeightSmall listPreferredItemPaddingEnd listPreferredItemPaddingLeft listPreferredItemPaddingRight listPreferredItemPaddingStart panelBackground panelMenuListTheme panelMenuListWidth popupMenuStyle popupWindowStyle radioButtonStyle ratingBarStyle ratingBarStyleIndicator ratingBarStyleSmall searchViewStyle seekBarStyle selectableItemBackground selectableItemBackgroundBorderless spinnerDropDownItemStyle spinnerStyle switchStyle textAppearanceLargePopupMenu textAppearanceListItem textAppearanceListItemSecondary textAppearanceListItemSmall textAppearancePopupMenuHeader textAppearanceSearchResultSubtitle textAppearanceSearchResultTitle textAppearanceSmallPopupMenu textColorAlertDialogListItem textColorSearchUrl toolbarNavigationButtonStyle toolbarStyle tooltipForegroundColor tooltipFrameBackground viewInflaterClass windowActionBar windowActionBarOverlay windowActionModeOverlay windowFixedHeightMajor windowFixedHeightMinor windowFixedWidthMajor windowFixedWidthMinor windowMinWidthMajor windowMinWidthMinor windowNoTitle
|
|
3117
3809
|
styleable AspectRatioFrameLayout resize_mode
|
|
3118
3810
|
styleable Badge backgroundColor badgeGravity badgeTextColor horizontalOffset maxCharacterCount number verticalOffset
|
|
3811
|
+
styleable BaseProgressIndicator android_indeterminate hideAnimationBehavior indicatorColor minHideDelay showAnimationBehavior showDelay trackColor trackCornerRadius trackThickness
|
|
3119
3812
|
styleable BottomAppBar backgroundTint elevation fabAlignmentMode fabAnimationMode fabCradleMargin fabCradleRoundedCornerRadius fabCradleVerticalOffset hideOnScroll paddingBottomSystemWindowInsets paddingLeftSystemWindowInsets paddingRightSystemWindowInsets
|
|
3120
|
-
styleable BottomNavigationView
|
|
3121
|
-
styleable BottomSheetBehavior_Layout android_elevation backgroundTint behavior_draggable behavior_expandedOffset behavior_fitToContents behavior_halfExpandedRatio behavior_hideable behavior_peekHeight behavior_saveFlags behavior_skipCollapsed gestureInsetBottomIgnored shapeAppearance shapeAppearanceOverlay
|
|
3813
|
+
styleable BottomNavigationView itemHorizontalTranslationEnabled
|
|
3814
|
+
styleable BottomSheetBehavior_Layout android_elevation android_maxWidth backgroundTint behavior_draggable behavior_expandedOffset behavior_fitToContents behavior_halfExpandedRatio behavior_hideable behavior_peekHeight behavior_saveFlags behavior_skipCollapsed gestureInsetBottomIgnored paddingBottomSystemWindowInsets paddingLeftSystemWindowInsets paddingRightSystemWindowInsets paddingTopSystemWindowInsets shapeAppearance shapeAppearanceOverlay
|
|
3122
3815
|
styleable ButtonBarLayout allowStacking
|
|
3123
3816
|
styleable CardView android_minHeight android_minWidth cardBackgroundColor cardCornerRadius cardElevation cardMaxElevation cardPreventCornerOverlap cardUseCompatPadding contentPadding contentPaddingBottom contentPaddingLeft contentPaddingRight contentPaddingTop
|
|
3124
|
-
styleable Chip android_checkable android_ellipsize android_maxWidth android_text android_textAppearance android_textColor checkedIcon checkedIconEnabled checkedIconTint checkedIconVisible chipBackgroundColor chipCornerRadius chipEndPadding chipIcon chipIconEnabled chipIconSize chipIconTint chipIconVisible chipMinHeight chipMinTouchTargetSize chipStartPadding chipStrokeColor chipStrokeWidth chipSurfaceColor closeIcon closeIconEnabled closeIconEndPadding closeIconSize closeIconStartPadding closeIconTint closeIconVisible ensureMinTouchTargetSize hideMotionSpec iconEndPadding iconStartPadding rippleColor shapeAppearance shapeAppearanceOverlay showMotionSpec textEndPadding textStartPadding
|
|
3817
|
+
styleable Chip android_checkable android_ellipsize android_maxWidth android_text android_textAppearance android_textColor android_textSize checkedIcon checkedIconEnabled checkedIconTint checkedIconVisible chipBackgroundColor chipCornerRadius chipEndPadding chipIcon chipIconEnabled chipIconSize chipIconTint chipIconVisible chipMinHeight chipMinTouchTargetSize chipStartPadding chipStrokeColor chipStrokeWidth chipSurfaceColor closeIcon closeIconEnabled closeIconEndPadding closeIconSize closeIconStartPadding closeIconTint closeIconVisible ensureMinTouchTargetSize hideMotionSpec iconEndPadding iconStartPadding rippleColor shapeAppearance shapeAppearanceOverlay showMotionSpec textEndPadding textStartPadding
|
|
3125
3818
|
styleable ChipGroup checkedChip chipSpacing chipSpacingHorizontal chipSpacingVertical selectionRequired singleLine singleSelection
|
|
3126
|
-
styleable
|
|
3819
|
+
styleable CircularProgressIndicator indicatorDirectionCircular indicatorInset indicatorSize
|
|
3820
|
+
styleable ClockFaceView clockFaceBackgroundColor clockNumberTextColor
|
|
3821
|
+
styleable ClockHandView clockHandColor materialCircleRadius selectorSize
|
|
3822
|
+
styleable CollapsingToolbarLayout collapsedTitleGravity collapsedTitleTextAppearance contentScrim expandedTitleGravity expandedTitleMargin expandedTitleMarginBottom expandedTitleMarginEnd expandedTitleMarginStart expandedTitleMarginTop expandedTitleTextAppearance extraMultilineHeightEnabled forceApplySystemWindowInsetTop maxLines scrimAnimationDuration scrimVisibleHeightTrigger statusBarScrim title titleCollapseMode titleEnabled toolbarId
|
|
3127
3823
|
styleable CollapsingToolbarLayout_Layout layout_collapseMode layout_collapseParallaxMultiplier
|
|
3128
3824
|
styleable ColorStateListItem alpha android_alpha android_color
|
|
3129
3825
|
styleable CompoundButton android_button buttonCompat buttonTint buttonTintMode
|
|
3826
|
+
styleable Constraint android_alpha android_elevation android_id android_layout_height android_layout_marginBottom android_layout_marginEnd android_layout_marginLeft android_layout_marginRight android_layout_marginStart android_layout_marginTop android_layout_width android_maxHeight android_maxWidth android_minHeight android_minWidth android_orientation android_rotation android_rotationX android_rotationY android_scaleX android_scaleY android_transformPivotX android_transformPivotY android_translationX android_translationY android_translationZ android_visibility animate_relativeTo barrierAllowsGoneWidgets barrierDirection barrierMargin chainUseRtl constraint_referenced_ids drawPath flow_firstHorizontalBias flow_firstHorizontalStyle flow_firstVerticalBias flow_firstVerticalStyle flow_horizontalAlign flow_horizontalBias flow_horizontalGap flow_horizontalStyle flow_lastHorizontalBias flow_lastHorizontalStyle flow_lastVerticalBias flow_lastVerticalStyle flow_maxElementsWrap flow_verticalAlign flow_verticalBias flow_verticalGap flow_verticalStyle flow_wrapMode layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBottom_creator layout_constraintBottom_toBottomOf layout_constraintBottom_toTopOf layout_constraintCircle layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintEnd_toEndOf layout_constraintEnd_toStartOf layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintLeft_toLeftOf layout_constraintLeft_toRightOf layout_constraintRight_creator layout_constraintRight_toLeftOf layout_constraintRight_toRightOf layout_constraintStart_toEndOf layout_constraintStart_toStartOf layout_constraintTag layout_constraintTop_creator layout_constraintTop_toBottomOf layout_constraintTop_toTopOf layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop motionProgress motionStagger pathMotionArc pivotAnchor transitionEasing transitionPathRotate visibilityMode
|
|
3827
|
+
styleable ConstraintLayout_Layout android_elevation android_maxHeight android_maxWidth android_minHeight android_minWidth android_orientation android_padding android_paddingBottom android_paddingEnd android_paddingLeft android_paddingRight android_paddingStart android_paddingTop android_visibility barrierAllowsGoneWidgets barrierDirection barrierMargin chainUseRtl constraintSet constraint_referenced_ids flow_firstHorizontalBias flow_firstHorizontalStyle flow_firstVerticalBias flow_firstVerticalStyle flow_horizontalAlign flow_horizontalBias flow_horizontalGap flow_horizontalStyle flow_lastHorizontalBias flow_lastHorizontalStyle flow_lastVerticalBias flow_lastVerticalStyle flow_maxElementsWrap flow_verticalAlign flow_verticalBias flow_verticalGap flow_verticalStyle flow_wrapMode layoutDescription layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBottom_creator layout_constraintBottom_toBottomOf layout_constraintBottom_toTopOf layout_constraintCircle layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintEnd_toEndOf layout_constraintEnd_toStartOf layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintLeft_toLeftOf layout_constraintLeft_toRightOf layout_constraintRight_creator layout_constraintRight_toLeftOf layout_constraintRight_toRightOf layout_constraintStart_toEndOf layout_constraintStart_toStartOf layout_constraintTag layout_constraintTop_creator layout_constraintTop_toBottomOf layout_constraintTop_toTopOf layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop layout_optimizationLevel
|
|
3828
|
+
styleable ConstraintLayout_placeholder content placeholder_emptyVisibility
|
|
3829
|
+
styleable ConstraintSet android_alpha android_elevation android_id android_layout_height android_layout_marginBottom android_layout_marginEnd android_layout_marginLeft android_layout_marginRight android_layout_marginStart android_layout_marginTop android_layout_width android_maxHeight android_maxWidth android_minHeight android_minWidth android_orientation android_pivotX android_pivotY android_rotation android_rotationX android_rotationY android_scaleX android_scaleY android_transformPivotX android_transformPivotY android_translationX android_translationY android_translationZ android_visibility animate_relativeTo barrierAllowsGoneWidgets barrierDirection barrierMargin chainUseRtl constraint_referenced_ids deriveConstraintsFrom drawPath flow_firstHorizontalBias flow_firstHorizontalStyle flow_firstVerticalBias flow_firstVerticalStyle flow_horizontalAlign flow_horizontalBias flow_horizontalGap flow_horizontalStyle flow_lastHorizontalBias flow_lastHorizontalStyle flow_lastVerticalBias flow_lastVerticalStyle flow_maxElementsWrap flow_verticalAlign flow_verticalBias flow_verticalGap flow_verticalStyle flow_wrapMode layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBottom_creator layout_constraintBottom_toBottomOf layout_constraintBottom_toTopOf layout_constraintCircle layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintEnd_toEndOf layout_constraintEnd_toStartOf layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintLeft_toLeftOf layout_constraintLeft_toRightOf layout_constraintRight_creator layout_constraintRight_toLeftOf layout_constraintRight_toRightOf layout_constraintStart_toEndOf layout_constraintStart_toStartOf layout_constraintTag layout_constraintTop_creator layout_constraintTop_toBottomOf layout_constraintTop_toTopOf layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop motionProgress motionStagger pathMotionArc pivotAnchor transitionEasing transitionPathRotate
|
|
3130
3830
|
styleable CoordinatorLayout keylines statusBarBackground
|
|
3131
3831
|
styleable CoordinatorLayout_Layout android_layout_gravity layout_anchor layout_anchorGravity layout_behavior layout_dodgeInsetEdges layout_insetEdge layout_keyline
|
|
3132
|
-
styleable
|
|
3832
|
+
styleable CustomAttribute attributeName customBoolean customColorDrawableValue customColorValue customDimension customFloatValue customIntegerValue customPixelDimension customStringValue
|
|
3833
|
+
styleable DefaultTimeBar ad_marker_color ad_marker_width bar_gravity bar_height buffered_color played_ad_marker_color played_color scrubber_color scrubber_disabled_size scrubber_dragged_size scrubber_drawable scrubber_enabled_size touch_target_height unplayed_color
|
|
3133
3834
|
styleable DrawerArrowToggle arrowHeadLength arrowShaftLength barLength color drawableSize gapBetweenBars spinBars thickness
|
|
3134
|
-
styleable ExtendedFloatingActionButton elevation extendMotionSpec hideMotionSpec showMotionSpec shrinkMotionSpec
|
|
3835
|
+
styleable ExtendedFloatingActionButton collapsedSize elevation extendMotionSpec hideMotionSpec showMotionSpec shrinkMotionSpec
|
|
3135
3836
|
styleable ExtendedFloatingActionButton_Behavior_Layout behavior_autoHide behavior_autoShrink
|
|
3136
3837
|
styleable FloatingActionButton android_enabled backgroundTint backgroundTintMode borderWidth elevation ensureMinTouchTargetSize fabCustomSize fabSize hideMotionSpec hoveredFocusedTranslationZ maxImageSize pressedTranslationZ rippleColor shapeAppearance shapeAppearanceOverlay showMotionSpec useCompatPadding
|
|
3137
3838
|
styleable FloatingActionButton_Behavior_Layout behavior_autoHide
|
|
3138
3839
|
styleable FlowLayout itemSpacing lineSpacing
|
|
3139
|
-
styleable FontFamily fontProviderAuthority fontProviderCerts fontProviderFetchStrategy fontProviderFetchTimeout fontProviderPackage fontProviderQuery
|
|
3840
|
+
styleable FontFamily fontProviderAuthority fontProviderCerts fontProviderFetchStrategy fontProviderFetchTimeout fontProviderPackage fontProviderQuery fontProviderSystemFontFamily
|
|
3140
3841
|
styleable FontFamilyFont android_font android_fontStyle android_fontVariationSettings android_fontWeight android_ttcIndex font fontStyle fontVariationSettings fontWeight ttcIndex
|
|
3141
3842
|
styleable ForegroundLinearLayout android_foreground android_foregroundGravity foregroundInsidePadding
|
|
3843
|
+
styleable Fragment android_id android_name android_tag
|
|
3844
|
+
styleable FragmentContainerView android_name android_tag
|
|
3142
3845
|
styleable GenericDraweeHierarchy actualImageScaleType backgroundImage fadeDuration failureImage failureImageScaleType overlayImage placeholderImage placeholderImageScaleType pressedStateOverlayImage progressBarAutoRotateInterval progressBarImage progressBarImageScaleType retryImage retryImageScaleType roundAsCircle roundBottomLeft roundBottomRight roundTopLeft roundTopRight roundWithOverlayColor roundedCornerRadius roundingBorderColor roundingBorderPadding roundingBorderWidth viewAspectRatio
|
|
3143
3846
|
styleable GradientColor android_centerColor android_centerX android_centerY android_endColor android_endX android_endY android_gradientRadius android_startColor android_startX android_startY android_tileMode android_type
|
|
3144
3847
|
styleable GradientColorItem android_color android_offset
|
|
3145
|
-
styleable
|
|
3848
|
+
styleable ImageFilterView altSrc brightness contrast crossfade overlay round roundPercent saturation warmth
|
|
3849
|
+
styleable Insets paddingBottomSystemWindowInsets paddingLeftSystemWindowInsets paddingRightSystemWindowInsets paddingTopSystemWindowInsets
|
|
3850
|
+
styleable KeyAttribute android_alpha android_elevation android_rotation android_rotationX android_rotationY android_scaleX android_scaleY android_transformPivotX android_transformPivotY android_translationX android_translationY android_translationZ curveFit framePosition motionProgress motionTarget transitionEasing transitionPathRotate
|
|
3851
|
+
styleable KeyCycle android_alpha android_elevation android_rotation android_rotationX android_rotationY android_scaleX android_scaleY android_translationX android_translationY android_translationZ curveFit framePosition motionProgress motionTarget transitionEasing transitionPathRotate waveOffset wavePeriod waveShape waveVariesBy
|
|
3852
|
+
styleable KeyPosition curveFit drawPath framePosition keyPositionType motionTarget pathMotionArc percentHeight percentWidth percentX percentY sizePercent transitionEasing
|
|
3853
|
+
styleable KeyTimeCycle android_alpha android_elevation android_rotation android_rotationX android_rotationY android_scaleX android_scaleY android_translationX android_translationY android_translationZ curveFit framePosition motionProgress motionTarget transitionEasing transitionPathRotate waveDecay waveOffset wavePeriod waveShape
|
|
3854
|
+
styleable KeyTrigger framePosition motionTarget motion_postLayoutCollision motion_triggerOnCollision onCross onNegativeCross onPositiveCross triggerId triggerReceiver triggerSlack
|
|
3855
|
+
styleable Layout android_layout_height android_layout_marginBottom android_layout_marginEnd android_layout_marginLeft android_layout_marginRight android_layout_marginStart android_layout_marginTop android_layout_width android_orientation barrierAllowsGoneWidgets barrierDirection barrierMargin chainUseRtl constraint_referenced_ids layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBottom_creator layout_constraintBottom_toBottomOf layout_constraintBottom_toTopOf layout_constraintCircle layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintEnd_toEndOf layout_constraintEnd_toStartOf layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintLeft_toLeftOf layout_constraintLeft_toRightOf layout_constraintRight_creator layout_constraintRight_toLeftOf layout_constraintRight_toRightOf layout_constraintStart_toEndOf layout_constraintStart_toStartOf layout_constraintTop_creator layout_constraintTop_toBottomOf layout_constraintTop_toTopOf layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop maxHeight maxWidth minHeight minWidth
|
|
3146
3856
|
styleable LinearLayoutCompat android_baselineAligned android_baselineAlignedChildIndex android_gravity android_orientation android_weightSum divider dividerPadding measureWithLargestChild showDividers
|
|
3147
3857
|
styleable LinearLayoutCompat_Layout android_layout_gravity android_layout_height android_layout_weight android_layout_width
|
|
3858
|
+
styleable LinearProgressIndicator indeterminateAnimationType indicatorDirectionLinear
|
|
3148
3859
|
styleable ListPopupWindow android_dropDownHorizontalOffset android_dropDownVerticalOffset
|
|
3149
3860
|
styleable LoadingImageView circleCrop imageAspectRatio imageAspectRatioAdjust
|
|
3150
3861
|
styleable MaterialAlertDialog backgroundInsetBottom backgroundInsetEnd backgroundInsetStart backgroundInsetTop
|
|
@@ -3152,50 +3863,71 @@ styleable MaterialAlertDialogTheme materialAlertDialogBodyTextStyle materialAler
|
|
|
3152
3863
|
styleable MaterialAutoCompleteTextView android_inputType
|
|
3153
3864
|
styleable MaterialButton android_background android_checkable android_insetBottom android_insetLeft android_insetRight android_insetTop backgroundTint backgroundTintMode cornerRadius elevation icon iconGravity iconPadding iconSize iconTint iconTintMode rippleColor shapeAppearance shapeAppearanceOverlay strokeColor strokeWidth
|
|
3154
3865
|
styleable MaterialButtonToggleGroup checkedButton selectionRequired singleSelection
|
|
3155
|
-
styleable MaterialCalendar android_windowFullscreen dayInvalidStyle daySelectedStyle dayStyle dayTodayStyle rangeFillColor yearSelectedStyle yearStyle yearTodayStyle
|
|
3866
|
+
styleable MaterialCalendar android_windowFullscreen dayInvalidStyle daySelectedStyle dayStyle dayTodayStyle nestedScrollable rangeFillColor yearSelectedStyle yearStyle yearTodayStyle
|
|
3156
3867
|
styleable MaterialCalendarItem android_insetBottom android_insetLeft android_insetRight android_insetTop itemFillColor itemShapeAppearance itemShapeAppearanceOverlay itemStrokeColor itemStrokeWidth itemTextColor
|
|
3157
|
-
styleable MaterialCardView android_checkable cardForegroundColor checkedIcon checkedIconTint rippleColor shapeAppearance shapeAppearanceOverlay state_dragged strokeColor strokeWidth
|
|
3868
|
+
styleable MaterialCardView android_checkable cardForegroundColor checkedIcon checkedIconMargin checkedIconSize checkedIconTint rippleColor shapeAppearance shapeAppearanceOverlay state_dragged strokeColor strokeWidth
|
|
3158
3869
|
styleable MaterialCheckBox buttonTint useMaterialThemeColors
|
|
3159
3870
|
styleable MaterialRadioButton buttonTint useMaterialThemeColors
|
|
3160
3871
|
styleable MaterialShape shapeAppearance shapeAppearanceOverlay
|
|
3161
|
-
styleable MaterialTextAppearance android_lineHeight lineHeight
|
|
3872
|
+
styleable MaterialTextAppearance android_letterSpacing android_lineHeight lineHeight
|
|
3162
3873
|
styleable MaterialTextView android_lineHeight android_textAppearance lineHeight
|
|
3874
|
+
styleable MaterialTimePicker clockIcon keyboardIcon
|
|
3875
|
+
styleable MaterialToolbar navigationIconTint subtitleCentered titleCentered
|
|
3163
3876
|
styleable MenuGroup android_checkableBehavior android_enabled android_id android_menuCategory android_orderInCategory android_visible
|
|
3164
3877
|
styleable MenuItem actionLayout actionProviderClass actionViewClass alphabeticModifiers android_alphabeticShortcut android_checkable android_checked android_enabled android_icon android_id android_menuCategory android_numericShortcut android_onClick android_orderInCategory android_title android_titleCondensed android_visible contentDescription iconTint iconTintMode numericModifiers showAsAction tooltipText
|
|
3165
3878
|
styleable MenuView android_headerBackground android_horizontalDivider android_itemBackground android_itemIconDisabledAlpha android_itemTextAppearance android_verticalDivider android_windowAnimationStyle preserveIconSpacing subMenuArrow
|
|
3166
|
-
styleable
|
|
3167
|
-
styleable
|
|
3168
|
-
styleable
|
|
3879
|
+
styleable MockView mock_diagonalsColor mock_label mock_labelBackgroundColor mock_labelColor mock_showDiagonals mock_showLabel
|
|
3880
|
+
styleable Motion animate_relativeTo drawPath motionPathRotate motionStagger pathMotionArc transitionEasing
|
|
3881
|
+
styleable MotionHelper onHide onShow
|
|
3882
|
+
styleable MotionLayout applyMotionScene currentState layoutDescription motionDebug motionProgress showPaths
|
|
3883
|
+
styleable MotionScene defaultDuration layoutDuringTransition
|
|
3884
|
+
styleable MotionTelltales telltales_tailColor telltales_tailScale telltales_velocityMode
|
|
3885
|
+
styleable NavigationBarView backgroundTint elevation itemBackground itemIconSize itemIconTint itemRippleColor itemTextAppearanceActive itemTextAppearanceInactive itemTextColor labelVisibilityMode menu
|
|
3886
|
+
styleable NavigationRailView headerLayout menuGravity
|
|
3887
|
+
styleable NavigationView android_background android_fitsSystemWindows android_maxWidth elevation headerLayout itemBackground itemHorizontalPadding itemIconPadding itemIconSize itemIconTint itemMaxLines itemShapeAppearance itemShapeAppearanceOverlay itemShapeFillColor itemShapeInsetBottom itemShapeInsetEnd itemShapeInsetStart itemShapeInsetTop itemTextAppearance itemTextColor menu shapeAppearance shapeAppearanceOverlay
|
|
3888
|
+
styleable OnClick clickAction targetId
|
|
3889
|
+
styleable OnSwipe dragDirection dragScale dragThreshold limitBoundsTo maxAcceleration maxVelocity moveWhenScrollAtTop nestedScrollFlags onTouchUp touchAnchorId touchAnchorSide touchRegionId
|
|
3890
|
+
styleable PlayerControlView ad_marker_color ad_marker_width bar_gravity bar_height buffered_color controller_layout_id played_ad_marker_color played_color repeat_toggle_modes scrubber_color scrubber_disabled_size scrubber_dragged_size scrubber_drawable scrubber_enabled_size show_fastforward_button show_next_button show_previous_button show_rewind_button show_shuffle_button show_timeout time_bar_min_update_interval touch_target_height unplayed_color
|
|
3891
|
+
styleable PlayerView ad_marker_color ad_marker_width auto_show bar_height buffered_color controller_layout_id default_artwork hide_during_ads hide_on_touch keep_content_on_player_reset played_ad_marker_color played_color player_layout_id repeat_toggle_modes resize_mode scrubber_color scrubber_disabled_size scrubber_dragged_size scrubber_drawable scrubber_enabled_size show_buffering show_shuffle_button show_timeout shutter_background_color surface_type time_bar_min_update_interval touch_target_height unplayed_color use_artwork use_controller
|
|
3169
3892
|
styleable PopupWindow android_popupAnimationStyle android_popupBackground overlapAnchor
|
|
3170
3893
|
styleable PopupWindowBackgroundState state_above_anchor
|
|
3171
|
-
styleable
|
|
3894
|
+
styleable PropertySet android_alpha android_visibility layout_constraintTag motionProgress visibilityMode
|
|
3895
|
+
styleable RadialViewGroup materialCircleRadius
|
|
3896
|
+
styleable RangeSlider minSeparation values
|
|
3172
3897
|
styleable RecycleListView paddingBottomNoButtons paddingTopNoTitle
|
|
3173
3898
|
styleable RecyclerView android_clipToPadding android_descendantFocusability android_orientation fastScrollEnabled fastScrollHorizontalThumbDrawable fastScrollHorizontalTrackDrawable fastScrollVerticalThumbDrawable fastScrollVerticalTrackDrawable layoutManager reverseLayout spanCount stackFromEnd
|
|
3174
3899
|
styleable ScrimInsetsFrameLayout insetForeground
|
|
3175
3900
|
styleable ScrollingViewBehavior_Layout behavior_overlapTop
|
|
3176
3901
|
styleable SearchView android_focusable android_imeOptions android_inputType android_maxWidth closeIcon commitIcon defaultQueryHint goIcon iconifiedByDefault layout queryBackground queryHint searchHintIcon searchIcon submitBackground suggestionRowLayout voiceIcon
|
|
3177
3902
|
styleable ShapeAppearance cornerFamily cornerFamilyBottomLeft cornerFamilyBottomRight cornerFamilyTopLeft cornerFamilyTopRight cornerSize cornerSizeBottomLeft cornerSizeBottomRight cornerSizeTopLeft cornerSizeTopRight
|
|
3178
|
-
styleable ShapeableImageView shapeAppearance shapeAppearanceOverlay strokeColor strokeWidth
|
|
3903
|
+
styleable ShapeableImageView contentPadding contentPaddingBottom contentPaddingEnd contentPaddingLeft contentPaddingRight contentPaddingStart contentPaddingTop shapeAppearance shapeAppearanceOverlay strokeColor strokeWidth
|
|
3179
3904
|
styleable SignInButton buttonSize colorScheme scopeUris
|
|
3180
3905
|
styleable SimpleDraweeView actualImageResource actualImageUri
|
|
3181
|
-
styleable Slider android_enabled android_stepSize android_value android_valueFrom android_valueTo haloColor haloRadius labelBehavior labelStyle thumbColor thumbElevation thumbRadius tickColor tickColorActive tickColorInactive trackColor trackColorActive trackColorInactive trackHeight
|
|
3906
|
+
styleable Slider android_enabled android_stepSize android_value android_valueFrom android_valueTo haloColor haloRadius labelBehavior labelStyle thumbColor thumbElevation thumbRadius thumbStrokeColor thumbStrokeWidth tickColor tickColorActive tickColorInactive tickVisible trackColor trackColorActive trackColorInactive trackHeight
|
|
3182
3907
|
styleable Snackbar snackbarButtonStyle snackbarStyle snackbarTextViewStyle
|
|
3183
3908
|
styleable SnackbarLayout actionTextColorAlpha android_maxWidth animationMode backgroundOverlayColorAlpha backgroundTint backgroundTintMode elevation maxActionInlineWidth
|
|
3184
3909
|
styleable Spinner android_dropDownWidth android_entries android_popupBackground android_prompt popupTheme
|
|
3910
|
+
styleable State android_id constraints
|
|
3185
3911
|
styleable StateListDrawable android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible
|
|
3186
3912
|
styleable StateListDrawableItem android_drawable
|
|
3913
|
+
styleable StateSet defaultState
|
|
3914
|
+
styleable StyledPlayerControlView ad_marker_color ad_marker_width animation_enabled bar_gravity bar_height buffered_color controller_layout_id played_ad_marker_color played_color repeat_toggle_modes scrubber_color scrubber_disabled_size scrubber_dragged_size scrubber_drawable scrubber_enabled_size show_fastforward_button show_next_button show_previous_button show_rewind_button show_shuffle_button show_subtitle_button show_timeout show_vr_button time_bar_min_update_interval touch_target_height unplayed_color
|
|
3915
|
+
styleable StyledPlayerView ad_marker_color ad_marker_width animation_enabled auto_show bar_gravity bar_height buffered_color controller_layout_id default_artwork hide_during_ads hide_on_touch keep_content_on_player_reset played_ad_marker_color played_color player_layout_id repeat_toggle_modes resize_mode scrubber_color scrubber_disabled_size scrubber_dragged_size scrubber_drawable scrubber_enabled_size show_buffering show_shuffle_button show_subtitle_button show_timeout show_vr_button shutter_background_color surface_type time_bar_min_update_interval touch_target_height unplayed_color use_artwork use_controller
|
|
3187
3916
|
styleable SwitchCompat android_textOff android_textOn android_thumb showText splitTrack switchMinWidth switchPadding switchTextAppearance thumbTextPadding thumbTint thumbTintMode track trackTint trackTintMode
|
|
3188
3917
|
styleable SwitchMaterial useMaterialThemeColors
|
|
3189
3918
|
styleable TabItem android_icon android_layout android_text
|
|
3190
|
-
styleable TabLayout tabBackground tabContentStart tabGravity tabIconTint tabIconTintMode tabIndicator tabIndicatorAnimationDuration tabIndicatorColor tabIndicatorFullWidth tabIndicatorGravity tabIndicatorHeight tabInlineLabel tabMaxWidth tabMinWidth tabMode tabPadding tabPaddingBottom tabPaddingEnd tabPaddingStart tabPaddingTop tabRippleColor tabSelectedTextColor tabTextAppearance tabTextColor tabUnboundedRipple
|
|
3919
|
+
styleable TabLayout tabBackground tabContentStart tabGravity tabIconTint tabIconTintMode tabIndicator tabIndicatorAnimationDuration tabIndicatorAnimationMode tabIndicatorColor tabIndicatorFullWidth tabIndicatorGravity tabIndicatorHeight tabInlineLabel tabMaxWidth tabMinWidth tabMode tabPadding tabPaddingBottom tabPaddingEnd tabPaddingStart tabPaddingTop tabRippleColor tabSelectedTextColor tabTextAppearance tabTextColor tabUnboundedRipple
|
|
3191
3920
|
styleable TextAppearance android_fontFamily android_shadowColor android_shadowDx android_shadowDy android_shadowRadius android_textColor android_textColorHint android_textColorLink android_textFontWeight android_textSize android_textStyle android_typeface fontFamily fontVariationSettings textAllCaps textLocale
|
|
3192
3921
|
styleable TextInputEditText textInputLayoutFocusedRectEnabled
|
|
3193
|
-
styleable TextInputLayout android_enabled android_hint android_textColorHint boxBackgroundColor boxBackgroundMode boxCollapsedPaddingTop boxCornerRadiusBottomEnd boxCornerRadiusBottomStart boxCornerRadiusTopEnd boxCornerRadiusTopStart boxStrokeColor boxStrokeErrorColor boxStrokeWidth boxStrokeWidthFocused counterEnabled counterMaxLength counterOverflowTextAppearance counterOverflowTextColor counterTextAppearance counterTextColor endIconCheckable endIconContentDescription endIconDrawable endIconMode endIconTint endIconTintMode errorContentDescription errorEnabled errorIconDrawable errorIconTint errorIconTintMode errorTextAppearance errorTextColor helperText helperTextEnabled helperTextTextAppearance helperTextTextColor hintAnimationEnabled hintEnabled hintTextAppearance hintTextColor passwordToggleContentDescription passwordToggleDrawable passwordToggleEnabled passwordToggleTint passwordToggleTintMode placeholderText placeholderTextAppearance placeholderTextColor prefixText prefixTextAppearance prefixTextColor shapeAppearance shapeAppearanceOverlay startIconCheckable startIconContentDescription startIconDrawable startIconTint startIconTintMode suffixText suffixTextAppearance suffixTextColor
|
|
3922
|
+
styleable TextInputLayout android_enabled android_hint android_maxWidth android_minWidth android_textColorHint boxBackgroundColor boxBackgroundMode boxCollapsedPaddingTop boxCornerRadiusBottomEnd boxCornerRadiusBottomStart boxCornerRadiusTopEnd boxCornerRadiusTopStart boxStrokeColor boxStrokeErrorColor boxStrokeWidth boxStrokeWidthFocused counterEnabled counterMaxLength counterOverflowTextAppearance counterOverflowTextColor counterTextAppearance counterTextColor endIconCheckable endIconContentDescription endIconDrawable endIconMode endIconTint endIconTintMode errorContentDescription errorEnabled errorIconDrawable errorIconTint errorIconTintMode errorTextAppearance errorTextColor expandedHintEnabled helperText helperTextEnabled helperTextTextAppearance helperTextTextColor hintAnimationEnabled hintEnabled hintTextAppearance hintTextColor passwordToggleContentDescription passwordToggleDrawable passwordToggleEnabled passwordToggleTint passwordToggleTintMode placeholderText placeholderTextAppearance placeholderTextColor prefixText prefixTextAppearance prefixTextColor shapeAppearance shapeAppearanceOverlay startIconCheckable startIconContentDescription startIconDrawable startIconTint startIconTintMode suffixText suffixTextAppearance suffixTextColor
|
|
3194
3923
|
styleable TextStyle android_ellipsize android_maxLines android_shadowColor android_shadowDx android_shadowDy android_shadowRadius android_singleLine android_textAppearance android_textColor android_textSize android_textStyle
|
|
3195
3924
|
styleable Theme actionBarDivider actionBarItemBackground actionBarPopupTheme actionBarSize actionBarSplitStyle actionBarStyle actionBarTabBarStyle actionBarTabStyle actionBarTabTextStyle actionBarTheme actionBarWidgetTheme actionButtonStyle actionDropDownStyle actionMenuTextAppearance actionMenuTextColor actionModeBackground actionModeCloseButtonStyle actionModeCloseDrawable actionModeCopyDrawable actionModeCutDrawable actionModeFindDrawable actionModePasteDrawable actionModePopupWindowStyle actionModeSelectAllDrawable actionModeShareDrawable actionModeSplitBackground actionModeStyle actionModeWebSearchDrawable actionOverflowButtonStyle actionOverflowMenuStyle activityChooserViewStyle alertDialogButtonGroupStyle alertDialogCenterButtons alertDialogStyle alertDialogTheme android_windowAnimationStyle android_windowIsFloating autoCompleteTextViewStyle borderlessButtonStyle buttonBarButtonStyle buttonBarNegativeButtonStyle buttonBarNeutralButtonStyle buttonBarPositiveButtonStyle buttonBarStyle buttonStyle buttonStyleSmall checkboxStyle checkedTextViewStyle colorAccent colorButtonNormal colorControlActivated colorControlHighlight colorControlNormal colorPrimary colorPrimaryDark colorSwitchThumbNormal controlBackground dialogPreferredPadding dialogTheme dividerHorizontal dividerVertical dropDownListViewStyle dropdownListPreferredItemHeight editTextBackground editTextColor editTextStyle homeAsUpIndicator listChoiceBackgroundIndicator listDividerAlertDialog listPopupWindowStyle listPreferredItemHeight listPreferredItemHeightLarge listPreferredItemHeightSmall listPreferredItemPaddingLeft listPreferredItemPaddingRight panelBackground panelMenuListTheme panelMenuListWidth popupMenuStyle popupWindowStyle radioButtonStyle ratingBarStyle searchViewStyle selectableItemBackground selectableItemBackgroundBorderless spinnerDropDownItemStyle spinnerStyle switchStyle textAppearanceLargePopupMenu textAppearanceListItem textAppearanceListItemSmall textAppearanceSearchResultSubtitle textAppearanceSearchResultTitle textAppearanceSmallPopupMenu textColorAlertDialogListItem textColorSearchUrl toolbarNavigationButtonStyle toolbarStyle windowActionBar windowActionBarOverlay windowActionModeOverlay windowFixedHeightMajor windowFixedHeightMinor windowFixedWidthMajor windowFixedWidthMinor windowMinWidthMajor windowMinWidthMinor windowNoTitle
|
|
3196
3925
|
styleable ThemeEnforcement android_textAppearance enforceMaterialTheme enforceTextAppearance
|
|
3197
3926
|
styleable Toolbar android_gravity android_minHeight buttonGravity collapseContentDescription collapseIcon contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation logo logoDescription maxButtonHeight menu navigationContentDescription navigationIcon popupTheme subtitle subtitleTextAppearance subtitleTextColor title titleMargin titleMarginBottom titleMarginEnd titleMarginStart titleMarginTop titleMargins titleTextAppearance titleTextColor
|
|
3198
3927
|
styleable Tooltip android_layout_margin android_minHeight android_minWidth android_padding android_text android_textAppearance backgroundTint
|
|
3928
|
+
styleable Transform android_elevation android_rotation android_rotationX android_rotationY android_scaleX android_scaleY android_transformPivotX android_transformPivotY android_translationX android_translationY android_translationZ
|
|
3929
|
+
styleable Transition android_id autoTransition constraintSetEnd constraintSetStart duration layoutDuringTransition motionInterpolator pathMotionArc staggered transitionDisable transitionFlags
|
|
3930
|
+
styleable Variant constraints region_heightLessThan region_heightMoreThan region_widthLessThan region_widthMoreThan
|
|
3199
3931
|
styleable View android_focusable android_theme paddingEnd paddingStart theme
|
|
3200
3932
|
styleable ViewBackgroundHelper android_background backgroundTint backgroundTintMode
|
|
3201
3933
|
styleable ViewPager2 android_orientation
|