react-native-netmera 1.3.4 → 1.3.8
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/README.md +473 -17
- package/android/.gradle/4.10.1/fileHashes/fileHashes.bin +0 -0
- package/android/.gradle/4.10.1/fileHashes/fileHashes.lock +0 -0
- package/android/.idea/gradle.xml +1 -0
- package/android/build/.transforms/00a1a2a97b81c133eb73f4c946b323aa/classes/classes.dex +0 -0
- package/android/build/.transforms/{1cc655d17744898d5287444bc3b54ccd.bin → 00a1a2a97b81c133eb73f4c946b323aa.bin} +0 -0
- package/android/build/.transforms/8b103fc7545c9799a16ff009dc2ead52/classes/classes.dex +0 -0
- package/android/build/.transforms/{1d7e2a596c5a01e1599ed8d99d8fed25.bin → 8b103fc7545c9799a16ff009dc2ead52.bin} +0 -0
- package/android/build/.transforms/9e086edd0cadc1c3e325107cef1d09ca/classes/classes.dex +0 -0
- package/android/build/.transforms/{6bd284ae922673d08694a1221c01809c.bin → 9e086edd0cadc1c3e325107cef1d09ca.bin} +0 -0
- package/android/build/.transforms/b0d220ccd1945e73ed321c4b96bb37de/classes/classes.dex +0 -0
- package/android/build/.transforms/{a8f21d984467d686c5d11cdc3f508ab2.bin → b0d220ccd1945e73ed321c4b96bb37de.bin} +0 -0
- package/android/build/.transforms/f70db9a523a6c7b9af14929671f6c09b/classes/classes.dex +0 -0
- package/android/build/.transforms/{ae3b3ad311ea4fe5b0c3652f1d5b8a07.bin → f70db9a523a6c7b9af14929671f6c09b.bin} +0 -0
- package/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml +1 -1
- package/android/build/intermediates/compile_library_classes_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 +3626 -383
- package/android/build/intermediates/incremental/packageDebugResources/compile-file-map.properties +1 -1
- package/android/build/intermediates/javac/debug/classes/com/netmera/reactnativesdk/RNNetmera.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/netmera/reactnativesdk/RNNetmeraCategoryObject.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/netmera/reactnativesdk/RNNetmeraConfiguration$1.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/netmera/reactnativesdk/RNNetmeraConfiguration$Builder.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/netmera/reactnativesdk/RNNetmeraConfiguration.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/netmera/reactnativesdk/RNNetmeraModule$1.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/netmera/reactnativesdk/RNNetmeraModule$2.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/netmera/reactnativesdk/RNNetmeraModule$3.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/netmera/reactnativesdk/RNNetmeraModule$4.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/netmera/reactnativesdk/RNNetmeraModule$5.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/netmera/reactnativesdk/RNNetmeraModule$6.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/netmera/reactnativesdk/RNNetmeraModule$7.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/netmera/reactnativesdk/RNNetmeraModule.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/netmera/reactnativesdk/RNNetmeraPushBroadcastReceiver.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/netmera/reactnativesdk/RNNetmeraUtil$1.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/netmera/reactnativesdk/RNNetmeraUtil.class +0 -0
- package/android/build/intermediates/library_manifest/debug/AndroidManifest.xml +1 -1
- package/android/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt +1 -1
- package/android/build/intermediates/runtime_library_classes_jar/debug/classes.jar +0 -0
- package/android/build/intermediates/symbol_list_with_package_name/debug/package-aware-r.txt +2726 -11
- package/android/build.gradle +6 -6
- package/android/src/main/java/com/netmera/reactnativesdk/RNNetmera.java +4 -8
- package/android/src/main/java/com/netmera/reactnativesdk/RNNetmeraCategoryObject.java +56 -0
- package/android/src/main/java/com/netmera/reactnativesdk/RNNetmeraConfiguration.java +116 -0
- package/android/src/main/java/com/netmera/reactnativesdk/RNNetmeraModule.java +146 -17
- package/android/src/main/java/com/netmera/reactnativesdk/RNNetmeraPushBroadcastReceiver.java +21 -37
- package/android/src/main/java/com/netmera/reactnativesdk/RNNetmeraUtil.java +68 -68
- package/index.js +116 -42
- package/ios/RNNetmera.h +6 -0
- package/ios/RNNetmera.m +212 -101
- package/ios/RNNetmeraCategoryObject.h +16 -0
- package/ios/RNNetmeraCategoryObject.m +59 -0
- package/ios/RNNetmeraEvent.m +5 -1
- package/ios/RNNetmeraRCTEventEmitter.h +4 -3
- package/ios/RNNetmeraRCTEventEmitter.m +9 -5
- package/ios/RNNetmeraUtils.m +45 -14
- package/package.json +1 -1
- package/android/build/.transforms/1cc655d17744898d5287444bc3b54ccd/classes/classes.dex +0 -0
- package/android/build/.transforms/1d7e2a596c5a01e1599ed8d99d8fed25/classes/classes.dex +0 -0
- package/android/build/.transforms/6bd284ae922673d08694a1221c01809c/classes/classes.dex +0 -0
- package/android/build/.transforms/a8f21d984467d686c5d11cdc3f508ab2/classes/classes.dex +0 -0
- package/android/build/.transforms/ae3b3ad311ea4fe5b0c3652f1d5b8a07/classes/classes.dex +0 -0
- package/android/build/.transforms/cc45f1af54894b49e3ec8f6b5a05a8d7/classes/classes.dex +0 -0
- package/android/build/.transforms/cc45f1af54894b49e3ec8f6b5a05a8d7.bin +0 -1
|
@@ -29,6 +29,10 @@ anim catalyst_push_up_in
|
|
|
29
29
|
anim catalyst_push_up_out
|
|
30
30
|
anim catalyst_slide_down
|
|
31
31
|
anim catalyst_slide_up
|
|
32
|
+
anim design_bottom_sheet_slide_in
|
|
33
|
+
anim design_bottom_sheet_slide_out
|
|
34
|
+
anim design_snackbar_in
|
|
35
|
+
anim design_snackbar_out
|
|
32
36
|
anim fragment_close_enter
|
|
33
37
|
anim fragment_close_exit
|
|
34
38
|
anim fragment_fade_enter
|
|
@@ -36,14 +40,44 @@ anim fragment_fade_exit
|
|
|
36
40
|
anim fragment_fast_out_extra_slow_in
|
|
37
41
|
anim fragment_open_enter
|
|
38
42
|
anim fragment_open_exit
|
|
43
|
+
anim mtrl_bottom_sheet_slide_in
|
|
44
|
+
anim mtrl_bottom_sheet_slide_out
|
|
45
|
+
anim mtrl_card_lowers_interpolator
|
|
39
46
|
anim netmera_popup_close
|
|
40
47
|
anim netmera_popup_open
|
|
48
|
+
animator design_appbar_state_list_animator
|
|
49
|
+
animator design_fab_hide_motion_spec
|
|
50
|
+
animator design_fab_show_motion_spec
|
|
41
51
|
animator fragment_close_enter
|
|
42
52
|
animator fragment_close_exit
|
|
43
53
|
animator fragment_fade_enter
|
|
44
54
|
animator fragment_fade_exit
|
|
45
55
|
animator fragment_open_enter
|
|
46
56
|
animator fragment_open_exit
|
|
57
|
+
animator linear_indeterminate_line1_head_interpolator
|
|
58
|
+
animator linear_indeterminate_line1_tail_interpolator
|
|
59
|
+
animator linear_indeterminate_line2_head_interpolator
|
|
60
|
+
animator linear_indeterminate_line2_tail_interpolator
|
|
61
|
+
animator m3_btn_elevated_btn_state_list_anim
|
|
62
|
+
animator m3_btn_state_list_anim
|
|
63
|
+
animator m3_card_elevated_state_list_anim
|
|
64
|
+
animator m3_card_state_list_anim
|
|
65
|
+
animator m3_chip_state_list_anim
|
|
66
|
+
animator m3_elevated_chip_state_list_anim
|
|
67
|
+
animator mtrl_btn_state_list_anim
|
|
68
|
+
animator mtrl_btn_unelevated_state_list_anim
|
|
69
|
+
animator mtrl_card_state_list_anim
|
|
70
|
+
animator mtrl_chip_state_list_anim
|
|
71
|
+
animator mtrl_extended_fab_change_size_collapse_motion_spec
|
|
72
|
+
animator mtrl_extended_fab_change_size_expand_motion_spec
|
|
73
|
+
animator mtrl_extended_fab_hide_motion_spec
|
|
74
|
+
animator mtrl_extended_fab_show_motion_spec
|
|
75
|
+
animator mtrl_extended_fab_state_list_animator
|
|
76
|
+
animator mtrl_fab_hide_motion_spec
|
|
77
|
+
animator mtrl_fab_show_motion_spec
|
|
78
|
+
animator mtrl_fab_transformation_sheet_collapse_spec
|
|
79
|
+
animator mtrl_fab_transformation_sheet_expand_spec
|
|
80
|
+
array huawei_module_network_services
|
|
47
81
|
attr SharedValue
|
|
48
82
|
attr SharedValueId
|
|
49
83
|
attr actionBarDivider
|
|
@@ -80,6 +114,7 @@ attr actionModeWebSearchDrawable
|
|
|
80
114
|
attr actionOverflowButtonStyle
|
|
81
115
|
attr actionOverflowMenuStyle
|
|
82
116
|
attr actionProviderClass
|
|
117
|
+
attr actionTextColorAlpha
|
|
83
118
|
attr actionViewClass
|
|
84
119
|
attr activityChooserViewStyle
|
|
85
120
|
attr actualImageResource
|
|
@@ -95,6 +130,9 @@ attr alphabeticModifiers
|
|
|
95
130
|
attr altSrc
|
|
96
131
|
attr animateCircleAngleTo
|
|
97
132
|
attr animateRelativeTo
|
|
133
|
+
attr animate_relativeTo
|
|
134
|
+
attr animationMode
|
|
135
|
+
attr appBarLayoutStyle
|
|
98
136
|
attr applyMotionScene
|
|
99
137
|
attr arcMode
|
|
100
138
|
attr arrowHeadLength
|
|
@@ -109,19 +147,59 @@ attr autoSizeStepGranularity
|
|
|
109
147
|
attr autoSizeTextType
|
|
110
148
|
attr autoTransition
|
|
111
149
|
attr background
|
|
150
|
+
attr backgroundColor
|
|
112
151
|
attr backgroundImage
|
|
152
|
+
attr backgroundInsetBottom
|
|
153
|
+
attr backgroundInsetEnd
|
|
154
|
+
attr backgroundInsetStart
|
|
155
|
+
attr backgroundInsetTop
|
|
156
|
+
attr backgroundOverlayColorAlpha
|
|
113
157
|
attr backgroundSplit
|
|
114
158
|
attr backgroundStacked
|
|
115
159
|
attr backgroundTint
|
|
116
160
|
attr backgroundTintMode
|
|
161
|
+
attr badgeGravity
|
|
162
|
+
attr badgeRadius
|
|
163
|
+
attr badgeStyle
|
|
164
|
+
attr badgeTextColor
|
|
165
|
+
attr badgeWidePadding
|
|
166
|
+
attr badgeWithTextRadius
|
|
117
167
|
attr barLength
|
|
118
168
|
attr barrierAllowsGoneWidgets
|
|
119
169
|
attr barrierDirection
|
|
120
170
|
attr barrierMargin
|
|
171
|
+
attr behavior_autoHide
|
|
172
|
+
attr behavior_autoShrink
|
|
173
|
+
attr behavior_draggable
|
|
174
|
+
attr behavior_expandedOffset
|
|
175
|
+
attr behavior_fitToContents
|
|
176
|
+
attr behavior_halfExpandedRatio
|
|
177
|
+
attr behavior_hideable
|
|
178
|
+
attr behavior_overlapTop
|
|
179
|
+
attr behavior_peekHeight
|
|
180
|
+
attr behavior_saveFlags
|
|
181
|
+
attr behavior_skipCollapsed
|
|
121
182
|
attr blendSrc
|
|
122
183
|
attr borderRound
|
|
123
184
|
attr borderRoundPercent
|
|
185
|
+
attr borderWidth
|
|
124
186
|
attr borderlessButtonStyle
|
|
187
|
+
attr bottomAppBarStyle
|
|
188
|
+
attr bottomInsetScrimEnabled
|
|
189
|
+
attr bottomNavigationStyle
|
|
190
|
+
attr bottomSheetDialogTheme
|
|
191
|
+
attr bottomSheetStyle
|
|
192
|
+
attr boxBackgroundColor
|
|
193
|
+
attr boxBackgroundMode
|
|
194
|
+
attr boxCollapsedPaddingTop
|
|
195
|
+
attr boxCornerRadiusBottomEnd
|
|
196
|
+
attr boxCornerRadiusBottomStart
|
|
197
|
+
attr boxCornerRadiusTopEnd
|
|
198
|
+
attr boxCornerRadiusTopStart
|
|
199
|
+
attr boxStrokeColor
|
|
200
|
+
attr boxStrokeErrorColor
|
|
201
|
+
attr boxStrokeWidth
|
|
202
|
+
attr boxStrokeWidthFocused
|
|
125
203
|
attr brightness
|
|
126
204
|
attr buttonBarButtonStyle
|
|
127
205
|
attr buttonBarNegativeButtonStyle
|
|
@@ -137,6 +215,14 @@ attr buttonStyle
|
|
|
137
215
|
attr buttonStyleSmall
|
|
138
216
|
attr buttonTint
|
|
139
217
|
attr buttonTintMode
|
|
218
|
+
attr cardBackgroundColor
|
|
219
|
+
attr cardCornerRadius
|
|
220
|
+
attr cardElevation
|
|
221
|
+
attr cardForegroundColor
|
|
222
|
+
attr cardMaxElevation
|
|
223
|
+
attr cardPreventCornerOverlap
|
|
224
|
+
attr cardUseCompatPadding
|
|
225
|
+
attr cardViewStyle
|
|
140
226
|
attr carousel_backwardTransition
|
|
141
227
|
attr carousel_emptyViewsBehavior
|
|
142
228
|
attr carousel_firstView
|
|
@@ -148,10 +234,42 @@ attr carousel_touchUpMode
|
|
|
148
234
|
attr carousel_touchUp_dampeningFactor
|
|
149
235
|
attr carousel_touchUp_velocityThreshold
|
|
150
236
|
attr chainUseRtl
|
|
237
|
+
attr checkMarkCompat
|
|
238
|
+
attr checkMarkTint
|
|
239
|
+
attr checkMarkTintMode
|
|
151
240
|
attr checkboxStyle
|
|
241
|
+
attr checkedButton
|
|
242
|
+
attr checkedChip
|
|
243
|
+
attr checkedIcon
|
|
244
|
+
attr checkedIconEnabled
|
|
245
|
+
attr checkedIconMargin
|
|
246
|
+
attr checkedIconSize
|
|
247
|
+
attr checkedIconTint
|
|
248
|
+
attr checkedIconVisible
|
|
152
249
|
attr checkedTextViewStyle
|
|
250
|
+
attr chipBackgroundColor
|
|
251
|
+
attr chipCornerRadius
|
|
252
|
+
attr chipEndPadding
|
|
253
|
+
attr chipGroupStyle
|
|
254
|
+
attr chipIcon
|
|
255
|
+
attr chipIconEnabled
|
|
256
|
+
attr chipIconSize
|
|
257
|
+
attr chipIconTint
|
|
258
|
+
attr chipIconVisible
|
|
259
|
+
attr chipMinHeight
|
|
260
|
+
attr chipMinTouchTargetSize
|
|
261
|
+
attr chipSpacing
|
|
262
|
+
attr chipSpacingHorizontal
|
|
263
|
+
attr chipSpacingVertical
|
|
264
|
+
attr chipStandaloneStyle
|
|
265
|
+
attr chipStartPadding
|
|
266
|
+
attr chipStrokeColor
|
|
267
|
+
attr chipStrokeWidth
|
|
268
|
+
attr chipStyle
|
|
269
|
+
attr chipSurfaceColor
|
|
153
270
|
attr circleCrop
|
|
154
271
|
attr circleRadius
|
|
272
|
+
attr circularProgressIndicatorStyle
|
|
155
273
|
attr circularflow_angles
|
|
156
274
|
attr circularflow_defaultAngle
|
|
157
275
|
attr circularflow_defaultRadius
|
|
@@ -159,22 +277,70 @@ attr circularflow_radiusInDP
|
|
|
159
277
|
attr circularflow_viewCenter
|
|
160
278
|
attr clearsTag
|
|
161
279
|
attr clickAction
|
|
280
|
+
attr clockFaceBackgroundColor
|
|
281
|
+
attr clockHandColor
|
|
282
|
+
attr clockIcon
|
|
283
|
+
attr clockNumberTextColor
|
|
162
284
|
attr closeIcon
|
|
285
|
+
attr closeIconEnabled
|
|
286
|
+
attr closeIconEndPadding
|
|
287
|
+
attr closeIconSize
|
|
288
|
+
attr closeIconStartPadding
|
|
289
|
+
attr closeIconTint
|
|
290
|
+
attr closeIconVisible
|
|
163
291
|
attr closeItemLayout
|
|
164
292
|
attr collapseContentDescription
|
|
165
293
|
attr collapseIcon
|
|
294
|
+
attr collapsedSize
|
|
295
|
+
attr collapsedTitleGravity
|
|
296
|
+
attr collapsedTitleTextAppearance
|
|
297
|
+
attr collapsedTitleTextColor
|
|
298
|
+
attr collapsingToolbarLayoutLargeSize
|
|
299
|
+
attr collapsingToolbarLayoutLargeStyle
|
|
300
|
+
attr collapsingToolbarLayoutMediumSize
|
|
301
|
+
attr collapsingToolbarLayoutMediumStyle
|
|
302
|
+
attr collapsingToolbarLayoutStyle
|
|
166
303
|
attr color
|
|
167
304
|
attr colorAccent
|
|
168
305
|
attr colorBackgroundFloating
|
|
169
306
|
attr colorButtonNormal
|
|
307
|
+
attr colorContainer
|
|
170
308
|
attr colorControlActivated
|
|
171
309
|
attr colorControlHighlight
|
|
172
310
|
attr colorControlNormal
|
|
173
311
|
attr colorError
|
|
312
|
+
attr colorErrorContainer
|
|
313
|
+
attr colorOnBackground
|
|
314
|
+
attr colorOnContainer
|
|
315
|
+
attr colorOnError
|
|
316
|
+
attr colorOnErrorContainer
|
|
317
|
+
attr colorOnPrimary
|
|
318
|
+
attr colorOnPrimaryContainer
|
|
319
|
+
attr colorOnPrimarySurface
|
|
320
|
+
attr colorOnSecondary
|
|
321
|
+
attr colorOnSecondaryContainer
|
|
322
|
+
attr colorOnSurface
|
|
323
|
+
attr colorOnSurfaceInverse
|
|
324
|
+
attr colorOnSurfaceVariant
|
|
325
|
+
attr colorOnTertiary
|
|
326
|
+
attr colorOnTertiaryContainer
|
|
327
|
+
attr colorOutline
|
|
174
328
|
attr colorPrimary
|
|
329
|
+
attr colorPrimaryContainer
|
|
175
330
|
attr colorPrimaryDark
|
|
331
|
+
attr colorPrimaryInverse
|
|
332
|
+
attr colorPrimarySurface
|
|
333
|
+
attr colorPrimaryVariant
|
|
176
334
|
attr colorScheme
|
|
335
|
+
attr colorSecondary
|
|
336
|
+
attr colorSecondaryContainer
|
|
337
|
+
attr colorSecondaryVariant
|
|
338
|
+
attr colorSurface
|
|
339
|
+
attr colorSurfaceInverse
|
|
340
|
+
attr colorSurfaceVariant
|
|
177
341
|
attr colorSwitchThumbNormal
|
|
342
|
+
attr colorTertiary
|
|
343
|
+
attr colorTertiaryContainer
|
|
178
344
|
attr commitIcon
|
|
179
345
|
attr constraintRotate
|
|
180
346
|
attr constraintSet
|
|
@@ -191,9 +357,34 @@ attr contentInsetLeft
|
|
|
191
357
|
attr contentInsetRight
|
|
192
358
|
attr contentInsetStart
|
|
193
359
|
attr contentInsetStartWithNavigation
|
|
360
|
+
attr contentPadding
|
|
361
|
+
attr contentPaddingBottom
|
|
362
|
+
attr contentPaddingEnd
|
|
363
|
+
attr contentPaddingLeft
|
|
364
|
+
attr contentPaddingRight
|
|
365
|
+
attr contentPaddingStart
|
|
366
|
+
attr contentPaddingTop
|
|
367
|
+
attr contentScrim
|
|
194
368
|
attr contrast
|
|
195
369
|
attr controlBackground
|
|
196
370
|
attr coordinatorLayoutStyle
|
|
371
|
+
attr cornerFamily
|
|
372
|
+
attr cornerFamilyBottomLeft
|
|
373
|
+
attr cornerFamilyBottomRight
|
|
374
|
+
attr cornerFamilyTopLeft
|
|
375
|
+
attr cornerFamilyTopRight
|
|
376
|
+
attr cornerRadius
|
|
377
|
+
attr cornerSize
|
|
378
|
+
attr cornerSizeBottomLeft
|
|
379
|
+
attr cornerSizeBottomRight
|
|
380
|
+
attr cornerSizeTopLeft
|
|
381
|
+
attr cornerSizeTopRight
|
|
382
|
+
attr counterEnabled
|
|
383
|
+
attr counterMaxLength
|
|
384
|
+
attr counterOverflowTextAppearance
|
|
385
|
+
attr counterOverflowTextColor
|
|
386
|
+
attr counterTextAppearance
|
|
387
|
+
attr counterTextColor
|
|
197
388
|
attr crossfade
|
|
198
389
|
attr currentState
|
|
199
390
|
attr curveFit
|
|
@@ -207,6 +398,10 @@ attr customNavigationLayout
|
|
|
207
398
|
attr customPixelDimension
|
|
208
399
|
attr customReference
|
|
209
400
|
attr customStringValue
|
|
401
|
+
attr dayInvalidStyle
|
|
402
|
+
attr daySelectedStyle
|
|
403
|
+
attr dayStyle
|
|
404
|
+
attr dayTodayStyle
|
|
210
405
|
attr defaultDuration
|
|
211
406
|
attr defaultQueryHint
|
|
212
407
|
attr defaultState
|
|
@@ -218,8 +413,12 @@ attr dialogPreferredPadding
|
|
|
218
413
|
attr dialogTheme
|
|
219
414
|
attr displayOptions
|
|
220
415
|
attr divider
|
|
416
|
+
attr dividerColor
|
|
221
417
|
attr dividerHorizontal
|
|
418
|
+
attr dividerInsetEnd
|
|
419
|
+
attr dividerInsetStart
|
|
222
420
|
attr dividerPadding
|
|
421
|
+
attr dividerThickness
|
|
223
422
|
attr dividerVertical
|
|
224
423
|
attr dragDirection
|
|
225
424
|
attr dragScale
|
|
@@ -235,14 +434,62 @@ attr drawableTint
|
|
|
235
434
|
attr drawableTintMode
|
|
236
435
|
attr drawableTopCompat
|
|
237
436
|
attr drawerArrowStyle
|
|
437
|
+
attr drawerLayoutCornerSize
|
|
438
|
+
attr drawerLayoutStyle
|
|
238
439
|
attr dropDownListViewStyle
|
|
239
440
|
attr dropdownListPreferredItemHeight
|
|
240
441
|
attr duration
|
|
442
|
+
attr dynamicColorThemeOverlay
|
|
241
443
|
attr editTextBackground
|
|
242
444
|
attr editTextColor
|
|
243
445
|
attr editTextStyle
|
|
244
446
|
attr elevation
|
|
447
|
+
attr elevationOverlayAccentColor
|
|
448
|
+
attr elevationOverlayColor
|
|
449
|
+
attr elevationOverlayEnabled
|
|
450
|
+
attr emojiCompatEnabled
|
|
451
|
+
attr enableEdgeToEdge
|
|
452
|
+
attr endIconCheckable
|
|
453
|
+
attr endIconContentDescription
|
|
454
|
+
attr endIconDrawable
|
|
455
|
+
attr endIconMode
|
|
456
|
+
attr endIconTint
|
|
457
|
+
attr endIconTintMode
|
|
458
|
+
attr enforceMaterialTheme
|
|
459
|
+
attr enforceTextAppearance
|
|
460
|
+
attr ensureMinTouchTargetSize
|
|
461
|
+
attr errorContentDescription
|
|
462
|
+
attr errorEnabled
|
|
463
|
+
attr errorIconDrawable
|
|
464
|
+
attr errorIconTint
|
|
465
|
+
attr errorIconTintMode
|
|
466
|
+
attr errorTextAppearance
|
|
467
|
+
attr errorTextColor
|
|
245
468
|
attr expandActivityOverflowButtonDrawable
|
|
469
|
+
attr expanded
|
|
470
|
+
attr expandedHintEnabled
|
|
471
|
+
attr expandedTitleGravity
|
|
472
|
+
attr expandedTitleMargin
|
|
473
|
+
attr expandedTitleMarginBottom
|
|
474
|
+
attr expandedTitleMarginEnd
|
|
475
|
+
attr expandedTitleMarginStart
|
|
476
|
+
attr expandedTitleMarginTop
|
|
477
|
+
attr expandedTitleTextAppearance
|
|
478
|
+
attr expandedTitleTextColor
|
|
479
|
+
attr extendMotionSpec
|
|
480
|
+
attr extendedFloatingActionButtonPrimaryStyle
|
|
481
|
+
attr extendedFloatingActionButtonSecondaryStyle
|
|
482
|
+
attr extendedFloatingActionButtonStyle
|
|
483
|
+
attr extendedFloatingActionButtonSurfaceStyle
|
|
484
|
+
attr extendedFloatingActionButtonTertiaryStyle
|
|
485
|
+
attr extraMultilineHeightEnabled
|
|
486
|
+
attr fabAlignmentMode
|
|
487
|
+
attr fabAnimationMode
|
|
488
|
+
attr fabCradleMargin
|
|
489
|
+
attr fabCradleRoundedCornerRadius
|
|
490
|
+
attr fabCradleVerticalOffset
|
|
491
|
+
attr fabCustomSize
|
|
492
|
+
attr fabSize
|
|
246
493
|
attr fadeDuration
|
|
247
494
|
attr failureImage
|
|
248
495
|
attr failureImageScaleType
|
|
@@ -252,6 +499,16 @@ attr fastScrollHorizontalTrackDrawable
|
|
|
252
499
|
attr fastScrollVerticalThumbDrawable
|
|
253
500
|
attr fastScrollVerticalTrackDrawable
|
|
254
501
|
attr firstBaselineToTopHeight
|
|
502
|
+
attr floatingActionButtonLargePrimaryStyle
|
|
503
|
+
attr floatingActionButtonLargeSecondaryStyle
|
|
504
|
+
attr floatingActionButtonLargeStyle
|
|
505
|
+
attr floatingActionButtonLargeSurfaceStyle
|
|
506
|
+
attr floatingActionButtonLargeTertiaryStyle
|
|
507
|
+
attr floatingActionButtonPrimaryStyle
|
|
508
|
+
attr floatingActionButtonSecondaryStyle
|
|
509
|
+
attr floatingActionButtonStyle
|
|
510
|
+
attr floatingActionButtonSurfaceStyle
|
|
511
|
+
attr floatingActionButtonTertiaryStyle
|
|
255
512
|
attr flow_firstHorizontalBias
|
|
256
513
|
attr flow_firstHorizontalStyle
|
|
257
514
|
attr flow_firstVerticalBias
|
|
@@ -283,14 +540,40 @@ attr fontProviderSystemFontFamily
|
|
|
283
540
|
attr fontStyle
|
|
284
541
|
attr fontVariationSettings
|
|
285
542
|
attr fontWeight
|
|
543
|
+
attr forceApplySystemWindowInsetTop
|
|
544
|
+
attr foregroundInsidePadding
|
|
286
545
|
attr framePosition
|
|
287
546
|
attr gapBetweenBars
|
|
547
|
+
attr gestureInsetBottomIgnored
|
|
288
548
|
attr goIcon
|
|
549
|
+
attr guidelineUseRtl
|
|
550
|
+
attr haloColor
|
|
551
|
+
attr haloRadius
|
|
552
|
+
attr headerLayout
|
|
289
553
|
attr height
|
|
554
|
+
attr helperText
|
|
555
|
+
attr helperTextEnabled
|
|
556
|
+
attr helperTextTextAppearance
|
|
557
|
+
attr helperTextTextColor
|
|
558
|
+
attr hideAnimationBehavior
|
|
559
|
+
attr hideMotionSpec
|
|
290
560
|
attr hideOnContentScroll
|
|
561
|
+
attr hideOnScroll
|
|
562
|
+
attr hintAnimationEnabled
|
|
563
|
+
attr hintEnabled
|
|
564
|
+
attr hintTextAppearance
|
|
565
|
+
attr hintTextColor
|
|
291
566
|
attr homeAsUpIndicator
|
|
292
567
|
attr homeLayout
|
|
568
|
+
attr horizontalOffset
|
|
569
|
+
attr horizontalOffsetWithText
|
|
570
|
+
attr hoveredFocusedTranslationZ
|
|
293
571
|
attr icon
|
|
572
|
+
attr iconEndPadding
|
|
573
|
+
attr iconGravity
|
|
574
|
+
attr iconPadding
|
|
575
|
+
attr iconSize
|
|
576
|
+
attr iconStartPadding
|
|
294
577
|
attr iconTint
|
|
295
578
|
attr iconTintMode
|
|
296
579
|
attr iconifiedByDefault
|
|
@@ -313,12 +596,54 @@ attr inAppMessageTitleColor
|
|
|
313
596
|
attr inAppMessageTitleSize
|
|
314
597
|
attr inAppMessageWeight
|
|
315
598
|
attr inAppMessageWidth
|
|
599
|
+
attr indeterminateAnimationType
|
|
316
600
|
attr indeterminateProgressStyle
|
|
601
|
+
attr indicatorColor
|
|
602
|
+
attr indicatorDirectionCircular
|
|
603
|
+
attr indicatorDirectionLinear
|
|
604
|
+
attr indicatorInset
|
|
605
|
+
attr indicatorSize
|
|
317
606
|
attr initialActivityCount
|
|
607
|
+
attr insetForeground
|
|
318
608
|
attr isLightTheme
|
|
609
|
+
attr isMaterial3Theme
|
|
610
|
+
attr isMaterialTheme
|
|
611
|
+
attr itemActiveIndicatorStyle
|
|
612
|
+
attr itemBackground
|
|
613
|
+
attr itemFillColor
|
|
614
|
+
attr itemHorizontalPadding
|
|
615
|
+
attr itemHorizontalTranslationEnabled
|
|
616
|
+
attr itemIconPadding
|
|
617
|
+
attr itemIconSize
|
|
618
|
+
attr itemIconTint
|
|
619
|
+
attr itemMaxLines
|
|
620
|
+
attr itemMinHeight
|
|
319
621
|
attr itemPadding
|
|
622
|
+
attr itemPaddingBottom
|
|
623
|
+
attr itemPaddingTop
|
|
624
|
+
attr itemRippleColor
|
|
625
|
+
attr itemShapeAppearance
|
|
626
|
+
attr itemShapeAppearanceOverlay
|
|
627
|
+
attr itemShapeFillColor
|
|
628
|
+
attr itemShapeInsetBottom
|
|
629
|
+
attr itemShapeInsetEnd
|
|
630
|
+
attr itemShapeInsetStart
|
|
631
|
+
attr itemShapeInsetTop
|
|
632
|
+
attr itemSpacing
|
|
633
|
+
attr itemStrokeColor
|
|
634
|
+
attr itemStrokeWidth
|
|
635
|
+
attr itemTextAppearance
|
|
636
|
+
attr itemTextAppearanceActive
|
|
637
|
+
attr itemTextAppearanceInactive
|
|
638
|
+
attr itemTextColor
|
|
639
|
+
attr itemVerticalPadding
|
|
320
640
|
attr keyPositionType
|
|
641
|
+
attr keyboardIcon
|
|
321
642
|
attr keylines
|
|
643
|
+
attr lStar
|
|
644
|
+
attr labelBehavior
|
|
645
|
+
attr labelStyle
|
|
646
|
+
attr labelVisibilityMode
|
|
322
647
|
attr lastBaselineToBottomHeight
|
|
323
648
|
attr layout
|
|
324
649
|
attr layoutDescription
|
|
@@ -327,6 +652,8 @@ attr layoutManager
|
|
|
327
652
|
attr layout_anchor
|
|
328
653
|
attr layout_anchorGravity
|
|
329
654
|
attr layout_behavior
|
|
655
|
+
attr layout_collapseMode
|
|
656
|
+
attr layout_collapseParallaxMultiplier
|
|
330
657
|
attr layout_constrainedHeight
|
|
331
658
|
attr layout_constrainedWidth
|
|
332
659
|
attr layout_constraintBaseline_creator
|
|
@@ -387,9 +714,16 @@ attr layout_insetEdge
|
|
|
387
714
|
attr layout_keyline
|
|
388
715
|
attr layout_marginBaseline
|
|
389
716
|
attr layout_optimizationLevel
|
|
717
|
+
attr layout_scrollEffect
|
|
718
|
+
attr layout_scrollFlags
|
|
719
|
+
attr layout_scrollInterpolator
|
|
390
720
|
attr layout_wrapBehaviorInParent
|
|
721
|
+
attr liftOnScroll
|
|
722
|
+
attr liftOnScrollTargetViewId
|
|
391
723
|
attr limitBoundsTo
|
|
392
724
|
attr lineHeight
|
|
725
|
+
attr lineSpacing
|
|
726
|
+
attr linearProgressIndicatorStyle
|
|
393
727
|
attr listChoiceBackgroundIndicator
|
|
394
728
|
attr listChoiceIndicatorMultipleAnimated
|
|
395
729
|
attr listChoiceIndicatorSingleAnimated
|
|
@@ -407,15 +741,61 @@ attr listPreferredItemPaddingRight
|
|
|
407
741
|
attr listPreferredItemPaddingStart
|
|
408
742
|
attr logo
|
|
409
743
|
attr logoDescription
|
|
744
|
+
attr marginHorizontal
|
|
745
|
+
attr materialAlertDialogBodyTextStyle
|
|
746
|
+
attr materialAlertDialogButtonSpacerVisibility
|
|
747
|
+
attr materialAlertDialogTheme
|
|
748
|
+
attr materialAlertDialogTitleIconStyle
|
|
749
|
+
attr materialAlertDialogTitlePanelStyle
|
|
750
|
+
attr materialAlertDialogTitleTextStyle
|
|
751
|
+
attr materialButtonOutlinedStyle
|
|
752
|
+
attr materialButtonStyle
|
|
753
|
+
attr materialButtonToggleGroupStyle
|
|
754
|
+
attr materialCalendarDay
|
|
755
|
+
attr materialCalendarDayOfWeekLabel
|
|
756
|
+
attr materialCalendarFullscreenTheme
|
|
757
|
+
attr materialCalendarHeaderCancelButton
|
|
758
|
+
attr materialCalendarHeaderConfirmButton
|
|
759
|
+
attr materialCalendarHeaderDivider
|
|
760
|
+
attr materialCalendarHeaderLayout
|
|
761
|
+
attr materialCalendarHeaderSelection
|
|
762
|
+
attr materialCalendarHeaderTitle
|
|
763
|
+
attr materialCalendarHeaderToggleButton
|
|
764
|
+
attr materialCalendarMonth
|
|
765
|
+
attr materialCalendarMonthNavigationButton
|
|
766
|
+
attr materialCalendarStyle
|
|
767
|
+
attr materialCalendarTheme
|
|
768
|
+
attr materialCalendarYearNavigationButton
|
|
769
|
+
attr materialCardViewElevatedStyle
|
|
770
|
+
attr materialCardViewFilledStyle
|
|
771
|
+
attr materialCardViewOutlinedStyle
|
|
772
|
+
attr materialCardViewStyle
|
|
773
|
+
attr materialCircleRadius
|
|
774
|
+
attr materialClockStyle
|
|
775
|
+
attr materialDisplayDividerStyle
|
|
776
|
+
attr materialDividerHeavyStyle
|
|
777
|
+
attr materialDividerStyle
|
|
778
|
+
attr materialThemeOverlay
|
|
779
|
+
attr materialTimePickerStyle
|
|
780
|
+
attr materialTimePickerTheme
|
|
781
|
+
attr materialTimePickerTitleStyle
|
|
410
782
|
attr maxAcceleration
|
|
783
|
+
attr maxActionInlineWidth
|
|
411
784
|
attr maxButtonHeight
|
|
785
|
+
attr maxCharacterCount
|
|
412
786
|
attr maxHeight
|
|
787
|
+
attr maxImageSize
|
|
788
|
+
attr maxLines
|
|
413
789
|
attr maxVelocity
|
|
414
790
|
attr maxWidth
|
|
415
791
|
attr measureWithLargestChild
|
|
416
792
|
attr menu
|
|
793
|
+
attr menuGravity
|
|
417
794
|
attr methodName
|
|
418
795
|
attr minHeight
|
|
796
|
+
attr minHideDelay
|
|
797
|
+
attr minSeparation
|
|
798
|
+
attr minTouchTargetSize
|
|
419
799
|
attr minWidth
|
|
420
800
|
attr mock_diagonalsColor
|
|
421
801
|
attr mock_label
|
|
@@ -424,6 +804,17 @@ attr mock_labelColor
|
|
|
424
804
|
attr mock_showDiagonals
|
|
425
805
|
attr mock_showLabel
|
|
426
806
|
attr motionDebug
|
|
807
|
+
attr motionDurationLong1
|
|
808
|
+
attr motionDurationLong2
|
|
809
|
+
attr motionDurationMedium1
|
|
810
|
+
attr motionDurationMedium2
|
|
811
|
+
attr motionDurationShort1
|
|
812
|
+
attr motionDurationShort2
|
|
813
|
+
attr motionEasingAccelerated
|
|
814
|
+
attr motionEasingDecelerated
|
|
815
|
+
attr motionEasingEmphasized
|
|
816
|
+
attr motionEasingLinear
|
|
817
|
+
attr motionEasingStandard
|
|
427
818
|
attr motionEffect_alpha
|
|
428
819
|
attr motionEffect_end
|
|
429
820
|
attr motionEffect_move
|
|
@@ -433,6 +824,7 @@ attr motionEffect_translationX
|
|
|
433
824
|
attr motionEffect_translationY
|
|
434
825
|
attr motionEffect_viewTransition
|
|
435
826
|
attr motionInterpolator
|
|
827
|
+
attr motionPath
|
|
436
828
|
attr motionPathRotate
|
|
437
829
|
attr motionProgress
|
|
438
830
|
attr motionStagger
|
|
@@ -443,9 +835,14 @@ attr moveWhenScrollAtTop
|
|
|
443
835
|
attr multiChoiceItemLayout
|
|
444
836
|
attr navigationContentDescription
|
|
445
837
|
attr navigationIcon
|
|
838
|
+
attr navigationIconTint
|
|
446
839
|
attr navigationMode
|
|
840
|
+
attr navigationRailStyle
|
|
841
|
+
attr navigationViewStyle
|
|
447
842
|
attr nestedScrollFlags
|
|
448
843
|
attr nestedScrollViewStyle
|
|
844
|
+
attr nestedScrollable
|
|
845
|
+
attr number
|
|
449
846
|
attr numericModifiers
|
|
450
847
|
attr onCross
|
|
451
848
|
attr onHide
|
|
@@ -458,12 +855,21 @@ attr overlapAnchor
|
|
|
458
855
|
attr overlay
|
|
459
856
|
attr overlayImage
|
|
460
857
|
attr paddingBottomNoButtons
|
|
858
|
+
attr paddingBottomSystemWindowInsets
|
|
461
859
|
attr paddingEnd
|
|
860
|
+
attr paddingLeftSystemWindowInsets
|
|
861
|
+
attr paddingRightSystemWindowInsets
|
|
462
862
|
attr paddingStart
|
|
463
863
|
attr paddingTopNoTitle
|
|
864
|
+
attr paddingTopSystemWindowInsets
|
|
464
865
|
attr panelBackground
|
|
465
866
|
attr panelMenuListTheme
|
|
466
867
|
attr panelMenuListWidth
|
|
868
|
+
attr passwordToggleContentDescription
|
|
869
|
+
attr passwordToggleDrawable
|
|
870
|
+
attr passwordToggleEnabled
|
|
871
|
+
attr passwordToggleTint
|
|
872
|
+
attr passwordToggleTintMode
|
|
467
873
|
attr pathMotionArc
|
|
468
874
|
attr path_percent
|
|
469
875
|
attr percentHeight
|
|
@@ -474,13 +880,21 @@ attr perpendicularPath_percent
|
|
|
474
880
|
attr pivotAnchor
|
|
475
881
|
attr placeholderImage
|
|
476
882
|
attr placeholderImageScaleType
|
|
883
|
+
attr placeholderText
|
|
884
|
+
attr placeholderTextAppearance
|
|
885
|
+
attr placeholderTextColor
|
|
477
886
|
attr placeholder_emptyVisibility
|
|
478
887
|
attr polarRelativeTo
|
|
888
|
+
attr popupMenuBackground
|
|
479
889
|
attr popupMenuStyle
|
|
480
890
|
attr popupTheme
|
|
481
891
|
attr popupWindowStyle
|
|
892
|
+
attr prefixText
|
|
893
|
+
attr prefixTextAppearance
|
|
894
|
+
attr prefixTextColor
|
|
482
895
|
attr preserveIconSpacing
|
|
483
896
|
attr pressedStateOverlayImage
|
|
897
|
+
attr pressedTranslationZ
|
|
484
898
|
attr progressBarAutoRotateInterval
|
|
485
899
|
attr progressBarImage
|
|
486
900
|
attr progressBarImageScaleType
|
|
@@ -493,6 +907,7 @@ attr queryBackground
|
|
|
493
907
|
attr queryHint
|
|
494
908
|
attr queryPatterns
|
|
495
909
|
attr radioButtonStyle
|
|
910
|
+
attr rangeFillColor
|
|
496
911
|
attr ratingBarStyle
|
|
497
912
|
attr ratingBarStyleIndicator
|
|
498
913
|
attr ratingBarStyleSmall
|
|
@@ -508,6 +923,7 @@ attr region_widthMoreThan
|
|
|
508
923
|
attr retryImage
|
|
509
924
|
attr retryImageScaleType
|
|
510
925
|
attr reverseLayout
|
|
926
|
+
attr rippleColor
|
|
511
927
|
attr rotationCenterId
|
|
512
928
|
attr round
|
|
513
929
|
attr roundAsCircle
|
|
@@ -528,21 +944,41 @@ attr roundingBorderWidth
|
|
|
528
944
|
attr saturation
|
|
529
945
|
attr scaleFromTextSize
|
|
530
946
|
attr scopeUris
|
|
947
|
+
attr scrimAnimationDuration
|
|
948
|
+
attr scrimBackground
|
|
949
|
+
attr scrimVisibleHeightTrigger
|
|
531
950
|
attr searchHintIcon
|
|
532
951
|
attr searchIcon
|
|
533
952
|
attr searchViewStyle
|
|
534
953
|
attr seekBarStyle
|
|
535
954
|
attr selectableItemBackground
|
|
536
955
|
attr selectableItemBackgroundBorderless
|
|
956
|
+
attr selectionRequired
|
|
957
|
+
attr selectorSize
|
|
537
958
|
attr setsTag
|
|
959
|
+
attr shapeAppearance
|
|
960
|
+
attr shapeAppearanceLargeComponent
|
|
961
|
+
attr shapeAppearanceMediumComponent
|
|
962
|
+
attr shapeAppearanceOverlay
|
|
963
|
+
attr shapeAppearanceSmallComponent
|
|
538
964
|
attr shortcutMatchRequired
|
|
965
|
+
attr showAnimationBehavior
|
|
539
966
|
attr showAsAction
|
|
967
|
+
attr showDelay
|
|
540
968
|
attr showDividers
|
|
969
|
+
attr showMotionSpec
|
|
541
970
|
attr showPaths
|
|
542
971
|
attr showText
|
|
543
972
|
attr showTitle
|
|
973
|
+
attr shrinkMotionSpec
|
|
544
974
|
attr singleChoiceItemLayout
|
|
975
|
+
attr singleLine
|
|
976
|
+
attr singleSelection
|
|
545
977
|
attr sizePercent
|
|
978
|
+
attr sliderStyle
|
|
979
|
+
attr snackbarButtonStyle
|
|
980
|
+
attr snackbarStyle
|
|
981
|
+
attr snackbarTextViewStyle
|
|
546
982
|
attr spanCount
|
|
547
983
|
attr spinBars
|
|
548
984
|
attr spinnerDropDownItemStyle
|
|
@@ -556,32 +992,111 @@ attr springStopThreshold
|
|
|
556
992
|
attr srcCompat
|
|
557
993
|
attr stackFromEnd
|
|
558
994
|
attr staggered
|
|
995
|
+
attr startIconCheckable
|
|
996
|
+
attr startIconContentDescription
|
|
997
|
+
attr startIconDrawable
|
|
998
|
+
attr startIconTint
|
|
999
|
+
attr startIconTintMode
|
|
559
1000
|
attr state_above_anchor
|
|
1001
|
+
attr state_collapsed
|
|
1002
|
+
attr state_collapsible
|
|
1003
|
+
attr state_dragged
|
|
1004
|
+
attr state_liftable
|
|
1005
|
+
attr state_lifted
|
|
560
1006
|
attr statusBarBackground
|
|
1007
|
+
attr statusBarForeground
|
|
1008
|
+
attr statusBarScrim
|
|
1009
|
+
attr strokeColor
|
|
1010
|
+
attr strokeWidth
|
|
561
1011
|
attr subMenuArrow
|
|
1012
|
+
attr subheaderColor
|
|
1013
|
+
attr subheaderInsetEnd
|
|
1014
|
+
attr subheaderInsetStart
|
|
1015
|
+
attr subheaderTextAppearance
|
|
562
1016
|
attr submitBackground
|
|
563
1017
|
attr subtitle
|
|
1018
|
+
attr subtitleCentered
|
|
564
1019
|
attr subtitleTextAppearance
|
|
565
1020
|
attr subtitleTextColor
|
|
566
1021
|
attr subtitleTextStyle
|
|
1022
|
+
attr suffixText
|
|
1023
|
+
attr suffixTextAppearance
|
|
1024
|
+
attr suffixTextColor
|
|
567
1025
|
attr suggestionRowLayout
|
|
568
1026
|
attr switchMinWidth
|
|
569
1027
|
attr switchPadding
|
|
570
1028
|
attr switchStyle
|
|
571
1029
|
attr switchTextAppearance
|
|
1030
|
+
attr tabBackground
|
|
1031
|
+
attr tabContentStart
|
|
1032
|
+
attr tabGravity
|
|
1033
|
+
attr tabIconTint
|
|
1034
|
+
attr tabIconTintMode
|
|
1035
|
+
attr tabIndicator
|
|
1036
|
+
attr tabIndicatorAnimationDuration
|
|
1037
|
+
attr tabIndicatorAnimationMode
|
|
1038
|
+
attr tabIndicatorColor
|
|
1039
|
+
attr tabIndicatorFullWidth
|
|
1040
|
+
attr tabIndicatorGravity
|
|
1041
|
+
attr tabIndicatorHeight
|
|
1042
|
+
attr tabInlineLabel
|
|
1043
|
+
attr tabMaxWidth
|
|
1044
|
+
attr tabMinWidth
|
|
1045
|
+
attr tabMode
|
|
1046
|
+
attr tabPadding
|
|
1047
|
+
attr tabPaddingBottom
|
|
1048
|
+
attr tabPaddingEnd
|
|
1049
|
+
attr tabPaddingStart
|
|
1050
|
+
attr tabPaddingTop
|
|
1051
|
+
attr tabRippleColor
|
|
1052
|
+
attr tabSecondaryStyle
|
|
1053
|
+
attr tabSelectedTextColor
|
|
1054
|
+
attr tabStyle
|
|
1055
|
+
attr tabTextAppearance
|
|
1056
|
+
attr tabTextColor
|
|
1057
|
+
attr tabUnboundedRipple
|
|
572
1058
|
attr targetId
|
|
573
1059
|
attr telltales_tailColor
|
|
574
1060
|
attr telltales_tailScale
|
|
575
1061
|
attr telltales_velocityMode
|
|
576
1062
|
attr textAllCaps
|
|
1063
|
+
attr textAppearanceBody1
|
|
1064
|
+
attr textAppearanceBody2
|
|
1065
|
+
attr textAppearanceBodyLarge
|
|
1066
|
+
attr textAppearanceBodyMedium
|
|
1067
|
+
attr textAppearanceBodySmall
|
|
1068
|
+
attr textAppearanceButton
|
|
1069
|
+
attr textAppearanceCaption
|
|
1070
|
+
attr textAppearanceDisplayLarge
|
|
1071
|
+
attr textAppearanceDisplayMedium
|
|
1072
|
+
attr textAppearanceDisplaySmall
|
|
1073
|
+
attr textAppearanceHeadline1
|
|
1074
|
+
attr textAppearanceHeadline2
|
|
1075
|
+
attr textAppearanceHeadline3
|
|
1076
|
+
attr textAppearanceHeadline4
|
|
1077
|
+
attr textAppearanceHeadline5
|
|
1078
|
+
attr textAppearanceHeadline6
|
|
1079
|
+
attr textAppearanceHeadlineLarge
|
|
1080
|
+
attr textAppearanceHeadlineMedium
|
|
1081
|
+
attr textAppearanceHeadlineSmall
|
|
1082
|
+
attr textAppearanceLabelLarge
|
|
1083
|
+
attr textAppearanceLabelMedium
|
|
1084
|
+
attr textAppearanceLabelSmall
|
|
577
1085
|
attr textAppearanceLargePopupMenu
|
|
1086
|
+
attr textAppearanceLineHeightEnabled
|
|
578
1087
|
attr textAppearanceListItem
|
|
579
1088
|
attr textAppearanceListItemSecondary
|
|
580
1089
|
attr textAppearanceListItemSmall
|
|
1090
|
+
attr textAppearanceOverline
|
|
581
1091
|
attr textAppearancePopupMenuHeader
|
|
582
1092
|
attr textAppearanceSearchResultSubtitle
|
|
583
1093
|
attr textAppearanceSearchResultTitle
|
|
584
1094
|
attr textAppearanceSmallPopupMenu
|
|
1095
|
+
attr textAppearanceSubtitle1
|
|
1096
|
+
attr textAppearanceSubtitle2
|
|
1097
|
+
attr textAppearanceTitleLarge
|
|
1098
|
+
attr textAppearanceTitleMedium
|
|
1099
|
+
attr textAppearanceTitleSmall
|
|
585
1100
|
attr textBackground
|
|
586
1101
|
attr textBackgroundPanX
|
|
587
1102
|
attr textBackgroundPanY
|
|
@@ -589,45 +1104,79 @@ attr textBackgroundRotate
|
|
|
589
1104
|
attr textBackgroundZoom
|
|
590
1105
|
attr textColorAlertDialogListItem
|
|
591
1106
|
attr textColorSearchUrl
|
|
1107
|
+
attr textEndPadding
|
|
592
1108
|
attr textFillColor
|
|
1109
|
+
attr textInputFilledDenseStyle
|
|
1110
|
+
attr textInputFilledExposedDropdownMenuStyle
|
|
1111
|
+
attr textInputFilledStyle
|
|
1112
|
+
attr textInputLayoutFocusedRectEnabled
|
|
1113
|
+
attr textInputOutlinedDenseStyle
|
|
1114
|
+
attr textInputOutlinedExposedDropdownMenuStyle
|
|
1115
|
+
attr textInputOutlinedStyle
|
|
1116
|
+
attr textInputStyle
|
|
593
1117
|
attr textLocale
|
|
594
1118
|
attr textOutlineColor
|
|
595
1119
|
attr textOutlineThickness
|
|
596
1120
|
attr textPanX
|
|
597
1121
|
attr textPanY
|
|
1122
|
+
attr textStartPadding
|
|
598
1123
|
attr textureBlurFactor
|
|
599
1124
|
attr textureEffect
|
|
600
1125
|
attr textureHeight
|
|
601
1126
|
attr textureWidth
|
|
602
1127
|
attr theme
|
|
1128
|
+
attr themeLineHeight
|
|
603
1129
|
attr thickness
|
|
1130
|
+
attr thumbColor
|
|
1131
|
+
attr thumbElevation
|
|
1132
|
+
attr thumbRadius
|
|
1133
|
+
attr thumbStrokeColor
|
|
1134
|
+
attr thumbStrokeWidth
|
|
604
1135
|
attr thumbTextPadding
|
|
605
1136
|
attr thumbTint
|
|
606
1137
|
attr thumbTintMode
|
|
1138
|
+
attr tickColor
|
|
1139
|
+
attr tickColorActive
|
|
1140
|
+
attr tickColorInactive
|
|
607
1141
|
attr tickMark
|
|
608
1142
|
attr tickMarkTint
|
|
609
1143
|
attr tickMarkTintMode
|
|
1144
|
+
attr tickVisible
|
|
610
1145
|
attr tint
|
|
611
1146
|
attr tintMode
|
|
612
1147
|
attr title
|
|
1148
|
+
attr titleCentered
|
|
1149
|
+
attr titleCollapseMode
|
|
1150
|
+
attr titleEnabled
|
|
613
1151
|
attr titleMargin
|
|
614
1152
|
attr titleMarginBottom
|
|
615
1153
|
attr titleMarginEnd
|
|
616
1154
|
attr titleMarginStart
|
|
617
1155
|
attr titleMarginTop
|
|
618
1156
|
attr titleMargins
|
|
1157
|
+
attr titlePositionInterpolator
|
|
619
1158
|
attr titleTextAppearance
|
|
620
1159
|
attr titleTextColor
|
|
621
1160
|
attr titleTextStyle
|
|
1161
|
+
attr toolbarId
|
|
622
1162
|
attr toolbarNavigationButtonStyle
|
|
623
1163
|
attr toolbarStyle
|
|
1164
|
+
attr toolbarSurfaceStyle
|
|
624
1165
|
attr tooltipForegroundColor
|
|
625
1166
|
attr tooltipFrameBackground
|
|
1167
|
+
attr tooltipStyle
|
|
626
1168
|
attr tooltipText
|
|
1169
|
+
attr topInsetScrimEnabled
|
|
627
1170
|
attr touchAnchorId
|
|
628
1171
|
attr touchAnchorSide
|
|
629
1172
|
attr touchRegionId
|
|
630
1173
|
attr track
|
|
1174
|
+
attr trackColor
|
|
1175
|
+
attr trackColorActive
|
|
1176
|
+
attr trackColorInactive
|
|
1177
|
+
attr trackCornerRadius
|
|
1178
|
+
attr trackHeight
|
|
1179
|
+
attr trackThickness
|
|
631
1180
|
attr trackTint
|
|
632
1181
|
attr trackTintMode
|
|
633
1182
|
attr transformPivotTarget
|
|
@@ -635,11 +1184,17 @@ attr transitionDisable
|
|
|
635
1184
|
attr transitionEasing
|
|
636
1185
|
attr transitionFlags
|
|
637
1186
|
attr transitionPathRotate
|
|
1187
|
+
attr transitionShapeAppearance
|
|
638
1188
|
attr triggerId
|
|
639
1189
|
attr triggerReceiver
|
|
640
1190
|
attr triggerSlack
|
|
641
1191
|
attr ttcIndex
|
|
642
1192
|
attr upDuration
|
|
1193
|
+
attr useCompatPadding
|
|
1194
|
+
attr useMaterialThemeColors
|
|
1195
|
+
attr values
|
|
1196
|
+
attr verticalOffset
|
|
1197
|
+
attr verticalOffsetWithText
|
|
643
1198
|
attr viewAspectRatio
|
|
644
1199
|
attr viewInflaterClass
|
|
645
1200
|
attr viewTransitionMode
|
|
@@ -665,15 +1220,33 @@ attr windowFixedWidthMinor
|
|
|
665
1220
|
attr windowMinWidthMajor
|
|
666
1221
|
attr windowMinWidthMinor
|
|
667
1222
|
attr windowNoTitle
|
|
1223
|
+
attr yearSelectedStyle
|
|
1224
|
+
attr yearStyle
|
|
1225
|
+
attr yearTodayStyle
|
|
668
1226
|
bool abc_action_bar_embed_tabs
|
|
669
1227
|
bool abc_allow_stacked_button_bar
|
|
670
1228
|
bool abc_config_actionMenuItemAllCaps
|
|
671
1229
|
bool enable_system_alarm_service_default
|
|
672
1230
|
bool enable_system_foreground_service_default
|
|
673
1231
|
bool enable_system_job_service_default
|
|
1232
|
+
bool m3_sys_typescale_body_large_text_all_caps
|
|
1233
|
+
bool m3_sys_typescale_body_medium_text_all_caps
|
|
1234
|
+
bool m3_sys_typescale_body_small_text_all_caps
|
|
1235
|
+
bool m3_sys_typescale_display_large_text_all_caps
|
|
1236
|
+
bool m3_sys_typescale_display_medium_text_all_caps
|
|
1237
|
+
bool m3_sys_typescale_display_small_text_all_caps
|
|
1238
|
+
bool m3_sys_typescale_headline_large_text_all_caps
|
|
1239
|
+
bool m3_sys_typescale_headline_medium_text_all_caps
|
|
1240
|
+
bool m3_sys_typescale_headline_small_text_all_caps
|
|
1241
|
+
bool m3_sys_typescale_label_large_text_all_caps
|
|
1242
|
+
bool m3_sys_typescale_label_medium_text_all_caps
|
|
1243
|
+
bool m3_sys_typescale_label_small_text_all_caps
|
|
1244
|
+
bool m3_sys_typescale_title_large_text_all_caps
|
|
1245
|
+
bool m3_sys_typescale_title_medium_text_all_caps
|
|
1246
|
+
bool m3_sys_typescale_title_small_text_all_caps
|
|
1247
|
+
bool mtrl_btn_textappearance_all_caps
|
|
674
1248
|
bool netmera_use_default_deeplink_action
|
|
675
1249
|
bool netmera_use_default_inapp_receiver
|
|
676
|
-
bool netmera_use_default_push_receiver
|
|
677
1250
|
bool netmera_use_location_provider_receiver
|
|
678
1251
|
bool workmanager_test_configuration
|
|
679
1252
|
color abc_background_cache_hint_selector_material_dark
|
|
@@ -718,8 +1291,13 @@ color bright_foreground_material_dark
|
|
|
718
1291
|
color bright_foreground_material_light
|
|
719
1292
|
color button_material_dark
|
|
720
1293
|
color button_material_light
|
|
1294
|
+
color cardview_dark_background
|
|
1295
|
+
color cardview_light_background
|
|
1296
|
+
color cardview_shadow_end_color
|
|
1297
|
+
color cardview_shadow_start_color
|
|
721
1298
|
color catalyst_logbox_background
|
|
722
1299
|
color catalyst_redbox_background
|
|
1300
|
+
color checkbox_themeable_attribute_color
|
|
723
1301
|
color common_google_signin_btn_text_dark
|
|
724
1302
|
color common_google_signin_btn_text_dark_default
|
|
725
1303
|
color common_google_signin_btn_text_dark_disabled
|
|
@@ -731,6 +1309,44 @@ color common_google_signin_btn_text_light_disabled
|
|
|
731
1309
|
color common_google_signin_btn_text_light_focused
|
|
732
1310
|
color common_google_signin_btn_text_light_pressed
|
|
733
1311
|
color common_google_signin_btn_tint
|
|
1312
|
+
color design_bottom_navigation_shadow_color
|
|
1313
|
+
color design_box_stroke_color
|
|
1314
|
+
color design_dark_default_color_background
|
|
1315
|
+
color design_dark_default_color_error
|
|
1316
|
+
color design_dark_default_color_on_background
|
|
1317
|
+
color design_dark_default_color_on_error
|
|
1318
|
+
color design_dark_default_color_on_primary
|
|
1319
|
+
color design_dark_default_color_on_secondary
|
|
1320
|
+
color design_dark_default_color_on_surface
|
|
1321
|
+
color design_dark_default_color_primary
|
|
1322
|
+
color design_dark_default_color_primary_dark
|
|
1323
|
+
color design_dark_default_color_primary_variant
|
|
1324
|
+
color design_dark_default_color_secondary
|
|
1325
|
+
color design_dark_default_color_secondary_variant
|
|
1326
|
+
color design_dark_default_color_surface
|
|
1327
|
+
color design_default_color_background
|
|
1328
|
+
color design_default_color_error
|
|
1329
|
+
color design_default_color_on_background
|
|
1330
|
+
color design_default_color_on_error
|
|
1331
|
+
color design_default_color_on_primary
|
|
1332
|
+
color design_default_color_on_secondary
|
|
1333
|
+
color design_default_color_on_surface
|
|
1334
|
+
color design_default_color_primary
|
|
1335
|
+
color design_default_color_primary_dark
|
|
1336
|
+
color design_default_color_primary_variant
|
|
1337
|
+
color design_default_color_secondary
|
|
1338
|
+
color design_default_color_secondary_variant
|
|
1339
|
+
color design_default_color_surface
|
|
1340
|
+
color design_error
|
|
1341
|
+
color design_fab_shadow_end_color
|
|
1342
|
+
color design_fab_shadow_mid_color
|
|
1343
|
+
color design_fab_shadow_start_color
|
|
1344
|
+
color design_fab_stroke_end_inner_color
|
|
1345
|
+
color design_fab_stroke_end_outer_color
|
|
1346
|
+
color design_fab_stroke_top_inner_color
|
|
1347
|
+
color design_fab_stroke_top_outer_color
|
|
1348
|
+
color design_icon_tint
|
|
1349
|
+
color design_snackbar_background_color
|
|
734
1350
|
color dim_foreground_disabled_material_dark
|
|
735
1351
|
color dim_foreground_disabled_material_light
|
|
736
1352
|
color dim_foreground_material_dark
|
|
@@ -740,15 +1356,398 @@ color emui_color_gray_10
|
|
|
740
1356
|
color emui_color_gray_7
|
|
741
1357
|
color error_color_material_dark
|
|
742
1358
|
color error_color_material_light
|
|
1359
|
+
color fcm_test_color
|
|
743
1360
|
color foreground_material_dark
|
|
744
1361
|
color foreground_material_light
|
|
745
1362
|
color highlighted_text_material_dark
|
|
746
1363
|
color highlighted_text_material_light
|
|
1364
|
+
color m3_appbar_overlay_color
|
|
1365
|
+
color m3_assist_chip_icon_tint_color
|
|
1366
|
+
color m3_assist_chip_stroke_color
|
|
1367
|
+
color m3_button_background_color_selector
|
|
1368
|
+
color m3_button_foreground_color_selector
|
|
1369
|
+
color m3_button_outline_color_selector
|
|
1370
|
+
color m3_button_ripple_color
|
|
1371
|
+
color m3_button_ripple_color_selector
|
|
1372
|
+
color m3_calendar_item_disabled_text
|
|
1373
|
+
color m3_calendar_item_stroke_color
|
|
1374
|
+
color m3_card_foreground_color
|
|
1375
|
+
color m3_card_ripple_color
|
|
1376
|
+
color m3_card_stroke_color
|
|
1377
|
+
color m3_chip_assist_text_color
|
|
1378
|
+
color m3_chip_background_color
|
|
1379
|
+
color m3_chip_ripple_color
|
|
1380
|
+
color m3_chip_stroke_color
|
|
1381
|
+
color m3_chip_text_color
|
|
1382
|
+
color m3_dark_default_color_primary_text
|
|
1383
|
+
color m3_dark_default_color_secondary_text
|
|
1384
|
+
color m3_dark_highlighted_text
|
|
1385
|
+
color m3_dark_hint_foreground
|
|
1386
|
+
color m3_dark_primary_text_disable_only
|
|
1387
|
+
color m3_default_color_primary_text
|
|
1388
|
+
color m3_default_color_secondary_text
|
|
1389
|
+
color m3_dynamic_dark_default_color_primary_text
|
|
1390
|
+
color m3_dynamic_dark_default_color_secondary_text
|
|
1391
|
+
color m3_dynamic_dark_highlighted_text
|
|
1392
|
+
color m3_dynamic_dark_hint_foreground
|
|
1393
|
+
color m3_dynamic_dark_primary_text_disable_only
|
|
1394
|
+
color m3_dynamic_default_color_primary_text
|
|
1395
|
+
color m3_dynamic_default_color_secondary_text
|
|
1396
|
+
color m3_dynamic_highlighted_text
|
|
1397
|
+
color m3_dynamic_hint_foreground
|
|
1398
|
+
color m3_dynamic_primary_text_disable_only
|
|
1399
|
+
color m3_elevated_chip_background_color
|
|
1400
|
+
color m3_highlighted_text
|
|
1401
|
+
color m3_hint_foreground
|
|
1402
|
+
color m3_navigation_bar_item_with_indicator_icon_tint
|
|
1403
|
+
color m3_navigation_bar_item_with_indicator_label_tint
|
|
1404
|
+
color m3_navigation_bar_ripple_color_selector
|
|
1405
|
+
color m3_navigation_item_background_color
|
|
1406
|
+
color m3_navigation_item_icon_tint
|
|
1407
|
+
color m3_navigation_item_text_color
|
|
1408
|
+
color m3_popupmenu_overlay_color
|
|
1409
|
+
color m3_primary_text_disable_only
|
|
1410
|
+
color m3_radiobutton_ripple_tint
|
|
1411
|
+
color m3_ref_palette_dynamic_neutral0
|
|
1412
|
+
color m3_ref_palette_dynamic_neutral10
|
|
1413
|
+
color m3_ref_palette_dynamic_neutral100
|
|
1414
|
+
color m3_ref_palette_dynamic_neutral20
|
|
1415
|
+
color m3_ref_palette_dynamic_neutral30
|
|
1416
|
+
color m3_ref_palette_dynamic_neutral40
|
|
1417
|
+
color m3_ref_palette_dynamic_neutral50
|
|
1418
|
+
color m3_ref_palette_dynamic_neutral60
|
|
1419
|
+
color m3_ref_palette_dynamic_neutral70
|
|
1420
|
+
color m3_ref_palette_dynamic_neutral80
|
|
1421
|
+
color m3_ref_palette_dynamic_neutral90
|
|
1422
|
+
color m3_ref_palette_dynamic_neutral95
|
|
1423
|
+
color m3_ref_palette_dynamic_neutral99
|
|
1424
|
+
color m3_ref_palette_dynamic_neutral_variant0
|
|
1425
|
+
color m3_ref_palette_dynamic_neutral_variant10
|
|
1426
|
+
color m3_ref_palette_dynamic_neutral_variant100
|
|
1427
|
+
color m3_ref_palette_dynamic_neutral_variant20
|
|
1428
|
+
color m3_ref_palette_dynamic_neutral_variant30
|
|
1429
|
+
color m3_ref_palette_dynamic_neutral_variant40
|
|
1430
|
+
color m3_ref_palette_dynamic_neutral_variant50
|
|
1431
|
+
color m3_ref_palette_dynamic_neutral_variant60
|
|
1432
|
+
color m3_ref_palette_dynamic_neutral_variant70
|
|
1433
|
+
color m3_ref_palette_dynamic_neutral_variant80
|
|
1434
|
+
color m3_ref_palette_dynamic_neutral_variant90
|
|
1435
|
+
color m3_ref_palette_dynamic_neutral_variant95
|
|
1436
|
+
color m3_ref_palette_dynamic_neutral_variant99
|
|
1437
|
+
color m3_ref_palette_dynamic_primary0
|
|
1438
|
+
color m3_ref_palette_dynamic_primary10
|
|
1439
|
+
color m3_ref_palette_dynamic_primary100
|
|
1440
|
+
color m3_ref_palette_dynamic_primary20
|
|
1441
|
+
color m3_ref_palette_dynamic_primary30
|
|
1442
|
+
color m3_ref_palette_dynamic_primary40
|
|
1443
|
+
color m3_ref_palette_dynamic_primary50
|
|
1444
|
+
color m3_ref_palette_dynamic_primary60
|
|
1445
|
+
color m3_ref_palette_dynamic_primary70
|
|
1446
|
+
color m3_ref_palette_dynamic_primary80
|
|
1447
|
+
color m3_ref_palette_dynamic_primary90
|
|
1448
|
+
color m3_ref_palette_dynamic_primary95
|
|
1449
|
+
color m3_ref_palette_dynamic_primary99
|
|
1450
|
+
color m3_ref_palette_dynamic_secondary0
|
|
1451
|
+
color m3_ref_palette_dynamic_secondary10
|
|
1452
|
+
color m3_ref_palette_dynamic_secondary100
|
|
1453
|
+
color m3_ref_palette_dynamic_secondary20
|
|
1454
|
+
color m3_ref_palette_dynamic_secondary30
|
|
1455
|
+
color m3_ref_palette_dynamic_secondary40
|
|
1456
|
+
color m3_ref_palette_dynamic_secondary50
|
|
1457
|
+
color m3_ref_palette_dynamic_secondary60
|
|
1458
|
+
color m3_ref_palette_dynamic_secondary70
|
|
1459
|
+
color m3_ref_palette_dynamic_secondary80
|
|
1460
|
+
color m3_ref_palette_dynamic_secondary90
|
|
1461
|
+
color m3_ref_palette_dynamic_secondary95
|
|
1462
|
+
color m3_ref_palette_dynamic_secondary99
|
|
1463
|
+
color m3_ref_palette_dynamic_tertiary0
|
|
1464
|
+
color m3_ref_palette_dynamic_tertiary10
|
|
1465
|
+
color m3_ref_palette_dynamic_tertiary100
|
|
1466
|
+
color m3_ref_palette_dynamic_tertiary20
|
|
1467
|
+
color m3_ref_palette_dynamic_tertiary30
|
|
1468
|
+
color m3_ref_palette_dynamic_tertiary40
|
|
1469
|
+
color m3_ref_palette_dynamic_tertiary50
|
|
1470
|
+
color m3_ref_palette_dynamic_tertiary60
|
|
1471
|
+
color m3_ref_palette_dynamic_tertiary70
|
|
1472
|
+
color m3_ref_palette_dynamic_tertiary80
|
|
1473
|
+
color m3_ref_palette_dynamic_tertiary90
|
|
1474
|
+
color m3_ref_palette_dynamic_tertiary95
|
|
1475
|
+
color m3_ref_palette_dynamic_tertiary99
|
|
1476
|
+
color m3_ref_palette_error0
|
|
1477
|
+
color m3_ref_palette_error10
|
|
1478
|
+
color m3_ref_palette_error100
|
|
1479
|
+
color m3_ref_palette_error20
|
|
1480
|
+
color m3_ref_palette_error30
|
|
1481
|
+
color m3_ref_palette_error40
|
|
1482
|
+
color m3_ref_palette_error50
|
|
1483
|
+
color m3_ref_palette_error60
|
|
1484
|
+
color m3_ref_palette_error70
|
|
1485
|
+
color m3_ref_palette_error80
|
|
1486
|
+
color m3_ref_palette_error90
|
|
1487
|
+
color m3_ref_palette_error95
|
|
1488
|
+
color m3_ref_palette_error99
|
|
1489
|
+
color m3_ref_palette_neutral0
|
|
1490
|
+
color m3_ref_palette_neutral10
|
|
1491
|
+
color m3_ref_palette_neutral100
|
|
1492
|
+
color m3_ref_palette_neutral20
|
|
1493
|
+
color m3_ref_palette_neutral30
|
|
1494
|
+
color m3_ref_palette_neutral40
|
|
1495
|
+
color m3_ref_palette_neutral50
|
|
1496
|
+
color m3_ref_palette_neutral60
|
|
1497
|
+
color m3_ref_palette_neutral70
|
|
1498
|
+
color m3_ref_palette_neutral80
|
|
1499
|
+
color m3_ref_palette_neutral90
|
|
1500
|
+
color m3_ref_palette_neutral95
|
|
1501
|
+
color m3_ref_palette_neutral99
|
|
1502
|
+
color m3_ref_palette_neutral_variant0
|
|
1503
|
+
color m3_ref_palette_neutral_variant10
|
|
1504
|
+
color m3_ref_palette_neutral_variant100
|
|
1505
|
+
color m3_ref_palette_neutral_variant20
|
|
1506
|
+
color m3_ref_palette_neutral_variant30
|
|
1507
|
+
color m3_ref_palette_neutral_variant40
|
|
1508
|
+
color m3_ref_palette_neutral_variant50
|
|
1509
|
+
color m3_ref_palette_neutral_variant60
|
|
1510
|
+
color m3_ref_palette_neutral_variant70
|
|
1511
|
+
color m3_ref_palette_neutral_variant80
|
|
1512
|
+
color m3_ref_palette_neutral_variant90
|
|
1513
|
+
color m3_ref_palette_neutral_variant95
|
|
1514
|
+
color m3_ref_palette_neutral_variant99
|
|
1515
|
+
color m3_ref_palette_primary0
|
|
1516
|
+
color m3_ref_palette_primary10
|
|
1517
|
+
color m3_ref_palette_primary100
|
|
1518
|
+
color m3_ref_palette_primary20
|
|
1519
|
+
color m3_ref_palette_primary30
|
|
1520
|
+
color m3_ref_palette_primary40
|
|
1521
|
+
color m3_ref_palette_primary50
|
|
1522
|
+
color m3_ref_palette_primary60
|
|
1523
|
+
color m3_ref_palette_primary70
|
|
1524
|
+
color m3_ref_palette_primary80
|
|
1525
|
+
color m3_ref_palette_primary90
|
|
1526
|
+
color m3_ref_palette_primary95
|
|
1527
|
+
color m3_ref_palette_primary99
|
|
1528
|
+
color m3_ref_palette_secondary0
|
|
1529
|
+
color m3_ref_palette_secondary10
|
|
1530
|
+
color m3_ref_palette_secondary100
|
|
1531
|
+
color m3_ref_palette_secondary20
|
|
1532
|
+
color m3_ref_palette_secondary30
|
|
1533
|
+
color m3_ref_palette_secondary40
|
|
1534
|
+
color m3_ref_palette_secondary50
|
|
1535
|
+
color m3_ref_palette_secondary60
|
|
1536
|
+
color m3_ref_palette_secondary70
|
|
1537
|
+
color m3_ref_palette_secondary80
|
|
1538
|
+
color m3_ref_palette_secondary90
|
|
1539
|
+
color m3_ref_palette_secondary95
|
|
1540
|
+
color m3_ref_palette_secondary99
|
|
1541
|
+
color m3_ref_palette_tertiary0
|
|
1542
|
+
color m3_ref_palette_tertiary10
|
|
1543
|
+
color m3_ref_palette_tertiary100
|
|
1544
|
+
color m3_ref_palette_tertiary20
|
|
1545
|
+
color m3_ref_palette_tertiary30
|
|
1546
|
+
color m3_ref_palette_tertiary40
|
|
1547
|
+
color m3_ref_palette_tertiary50
|
|
1548
|
+
color m3_ref_palette_tertiary60
|
|
1549
|
+
color m3_ref_palette_tertiary70
|
|
1550
|
+
color m3_ref_palette_tertiary80
|
|
1551
|
+
color m3_ref_palette_tertiary90
|
|
1552
|
+
color m3_ref_palette_tertiary95
|
|
1553
|
+
color m3_ref_palette_tertiary99
|
|
1554
|
+
color m3_selection_control_button_tint
|
|
1555
|
+
color m3_selection_control_ripple_color_selector
|
|
1556
|
+
color m3_slider_active_track_color
|
|
1557
|
+
color m3_slider_halo_color
|
|
1558
|
+
color m3_slider_inactive_track_color
|
|
1559
|
+
color m3_slider_thumb_color
|
|
1560
|
+
color m3_switch_thumb_tint
|
|
1561
|
+
color m3_switch_track_tint
|
|
1562
|
+
color m3_sys_color_dark_background
|
|
1563
|
+
color m3_sys_color_dark_error
|
|
1564
|
+
color m3_sys_color_dark_error_container
|
|
1565
|
+
color m3_sys_color_dark_inverse_on_surface
|
|
1566
|
+
color m3_sys_color_dark_inverse_primary
|
|
1567
|
+
color m3_sys_color_dark_inverse_surface
|
|
1568
|
+
color m3_sys_color_dark_on_background
|
|
1569
|
+
color m3_sys_color_dark_on_error
|
|
1570
|
+
color m3_sys_color_dark_on_error_container
|
|
1571
|
+
color m3_sys_color_dark_on_primary
|
|
1572
|
+
color m3_sys_color_dark_on_primary_container
|
|
1573
|
+
color m3_sys_color_dark_on_secondary
|
|
1574
|
+
color m3_sys_color_dark_on_secondary_container
|
|
1575
|
+
color m3_sys_color_dark_on_surface
|
|
1576
|
+
color m3_sys_color_dark_on_surface_variant
|
|
1577
|
+
color m3_sys_color_dark_on_tertiary
|
|
1578
|
+
color m3_sys_color_dark_on_tertiary_container
|
|
1579
|
+
color m3_sys_color_dark_outline
|
|
1580
|
+
color m3_sys_color_dark_primary
|
|
1581
|
+
color m3_sys_color_dark_primary_container
|
|
1582
|
+
color m3_sys_color_dark_secondary
|
|
1583
|
+
color m3_sys_color_dark_secondary_container
|
|
1584
|
+
color m3_sys_color_dark_surface
|
|
1585
|
+
color m3_sys_color_dark_surface_variant
|
|
1586
|
+
color m3_sys_color_dark_tertiary
|
|
1587
|
+
color m3_sys_color_dark_tertiary_container
|
|
1588
|
+
color m3_sys_color_dynamic_dark_background
|
|
1589
|
+
color m3_sys_color_dynamic_dark_inverse_on_surface
|
|
1590
|
+
color m3_sys_color_dynamic_dark_inverse_primary
|
|
1591
|
+
color m3_sys_color_dynamic_dark_inverse_surface
|
|
1592
|
+
color m3_sys_color_dynamic_dark_on_background
|
|
1593
|
+
color m3_sys_color_dynamic_dark_on_primary
|
|
1594
|
+
color m3_sys_color_dynamic_dark_on_primary_container
|
|
1595
|
+
color m3_sys_color_dynamic_dark_on_secondary
|
|
1596
|
+
color m3_sys_color_dynamic_dark_on_secondary_container
|
|
1597
|
+
color m3_sys_color_dynamic_dark_on_surface
|
|
1598
|
+
color m3_sys_color_dynamic_dark_on_surface_variant
|
|
1599
|
+
color m3_sys_color_dynamic_dark_on_tertiary
|
|
1600
|
+
color m3_sys_color_dynamic_dark_on_tertiary_container
|
|
1601
|
+
color m3_sys_color_dynamic_dark_outline
|
|
1602
|
+
color m3_sys_color_dynamic_dark_primary
|
|
1603
|
+
color m3_sys_color_dynamic_dark_primary_container
|
|
1604
|
+
color m3_sys_color_dynamic_dark_secondary
|
|
1605
|
+
color m3_sys_color_dynamic_dark_secondary_container
|
|
1606
|
+
color m3_sys_color_dynamic_dark_surface
|
|
1607
|
+
color m3_sys_color_dynamic_dark_surface_variant
|
|
1608
|
+
color m3_sys_color_dynamic_dark_tertiary
|
|
1609
|
+
color m3_sys_color_dynamic_dark_tertiary_container
|
|
1610
|
+
color m3_sys_color_dynamic_light_background
|
|
1611
|
+
color m3_sys_color_dynamic_light_inverse_on_surface
|
|
1612
|
+
color m3_sys_color_dynamic_light_inverse_primary
|
|
1613
|
+
color m3_sys_color_dynamic_light_inverse_surface
|
|
1614
|
+
color m3_sys_color_dynamic_light_on_background
|
|
1615
|
+
color m3_sys_color_dynamic_light_on_primary
|
|
1616
|
+
color m3_sys_color_dynamic_light_on_primary_container
|
|
1617
|
+
color m3_sys_color_dynamic_light_on_secondary
|
|
1618
|
+
color m3_sys_color_dynamic_light_on_secondary_container
|
|
1619
|
+
color m3_sys_color_dynamic_light_on_surface
|
|
1620
|
+
color m3_sys_color_dynamic_light_on_surface_variant
|
|
1621
|
+
color m3_sys_color_dynamic_light_on_tertiary
|
|
1622
|
+
color m3_sys_color_dynamic_light_on_tertiary_container
|
|
1623
|
+
color m3_sys_color_dynamic_light_outline
|
|
1624
|
+
color m3_sys_color_dynamic_light_primary
|
|
1625
|
+
color m3_sys_color_dynamic_light_primary_container
|
|
1626
|
+
color m3_sys_color_dynamic_light_secondary
|
|
1627
|
+
color m3_sys_color_dynamic_light_secondary_container
|
|
1628
|
+
color m3_sys_color_dynamic_light_surface
|
|
1629
|
+
color m3_sys_color_dynamic_light_surface_variant
|
|
1630
|
+
color m3_sys_color_dynamic_light_tertiary
|
|
1631
|
+
color m3_sys_color_dynamic_light_tertiary_container
|
|
1632
|
+
color m3_sys_color_light_background
|
|
1633
|
+
color m3_sys_color_light_error
|
|
1634
|
+
color m3_sys_color_light_error_container
|
|
1635
|
+
color m3_sys_color_light_inverse_on_surface
|
|
1636
|
+
color m3_sys_color_light_inverse_primary
|
|
1637
|
+
color m3_sys_color_light_inverse_surface
|
|
1638
|
+
color m3_sys_color_light_on_background
|
|
1639
|
+
color m3_sys_color_light_on_error
|
|
1640
|
+
color m3_sys_color_light_on_error_container
|
|
1641
|
+
color m3_sys_color_light_on_primary
|
|
1642
|
+
color m3_sys_color_light_on_primary_container
|
|
1643
|
+
color m3_sys_color_light_on_secondary
|
|
1644
|
+
color m3_sys_color_light_on_secondary_container
|
|
1645
|
+
color m3_sys_color_light_on_surface
|
|
1646
|
+
color m3_sys_color_light_on_surface_variant
|
|
1647
|
+
color m3_sys_color_light_on_tertiary
|
|
1648
|
+
color m3_sys_color_light_on_tertiary_container
|
|
1649
|
+
color m3_sys_color_light_outline
|
|
1650
|
+
color m3_sys_color_light_primary
|
|
1651
|
+
color m3_sys_color_light_primary_container
|
|
1652
|
+
color m3_sys_color_light_secondary
|
|
1653
|
+
color m3_sys_color_light_secondary_container
|
|
1654
|
+
color m3_sys_color_light_surface
|
|
1655
|
+
color m3_sys_color_light_surface_variant
|
|
1656
|
+
color m3_sys_color_light_tertiary
|
|
1657
|
+
color m3_sys_color_light_tertiary_container
|
|
1658
|
+
color m3_tabs_icon_color
|
|
1659
|
+
color m3_tabs_ripple_color
|
|
1660
|
+
color m3_text_button_background_color_selector
|
|
1661
|
+
color m3_text_button_foreground_color_selector
|
|
1662
|
+
color m3_text_button_ripple_color_selector
|
|
1663
|
+
color m3_textfield_filled_background_color
|
|
1664
|
+
color m3_textfield_indicator_text_color
|
|
1665
|
+
color m3_textfield_input_text_color
|
|
1666
|
+
color m3_textfield_label_color
|
|
1667
|
+
color m3_textfield_stroke_color
|
|
1668
|
+
color m3_timepicker_button_background_color
|
|
1669
|
+
color m3_timepicker_button_ripple_color
|
|
1670
|
+
color m3_timepicker_button_text_color
|
|
1671
|
+
color m3_timepicker_clock_text_color
|
|
1672
|
+
color m3_timepicker_display_background_color
|
|
1673
|
+
color m3_timepicker_display_ripple_color
|
|
1674
|
+
color m3_timepicker_display_stroke_color
|
|
1675
|
+
color m3_timepicker_display_text_color
|
|
1676
|
+
color m3_timepicker_secondary_text_button_ripple_color
|
|
1677
|
+
color m3_timepicker_secondary_text_button_text_color
|
|
1678
|
+
color m3_tonal_button_ripple_color_selector
|
|
747
1679
|
color material_blue_grey_800
|
|
748
1680
|
color material_blue_grey_900
|
|
749
1681
|
color material_blue_grey_950
|
|
1682
|
+
color material_cursor_color
|
|
750
1683
|
color material_deep_teal_200
|
|
751
1684
|
color material_deep_teal_500
|
|
1685
|
+
color material_divider_color
|
|
1686
|
+
color material_dynamic_neutral0
|
|
1687
|
+
color material_dynamic_neutral10
|
|
1688
|
+
color material_dynamic_neutral100
|
|
1689
|
+
color material_dynamic_neutral20
|
|
1690
|
+
color material_dynamic_neutral30
|
|
1691
|
+
color material_dynamic_neutral40
|
|
1692
|
+
color material_dynamic_neutral50
|
|
1693
|
+
color material_dynamic_neutral60
|
|
1694
|
+
color material_dynamic_neutral70
|
|
1695
|
+
color material_dynamic_neutral80
|
|
1696
|
+
color material_dynamic_neutral90
|
|
1697
|
+
color material_dynamic_neutral95
|
|
1698
|
+
color material_dynamic_neutral99
|
|
1699
|
+
color material_dynamic_neutral_variant0
|
|
1700
|
+
color material_dynamic_neutral_variant10
|
|
1701
|
+
color material_dynamic_neutral_variant100
|
|
1702
|
+
color material_dynamic_neutral_variant20
|
|
1703
|
+
color material_dynamic_neutral_variant30
|
|
1704
|
+
color material_dynamic_neutral_variant40
|
|
1705
|
+
color material_dynamic_neutral_variant50
|
|
1706
|
+
color material_dynamic_neutral_variant60
|
|
1707
|
+
color material_dynamic_neutral_variant70
|
|
1708
|
+
color material_dynamic_neutral_variant80
|
|
1709
|
+
color material_dynamic_neutral_variant90
|
|
1710
|
+
color material_dynamic_neutral_variant95
|
|
1711
|
+
color material_dynamic_neutral_variant99
|
|
1712
|
+
color material_dynamic_primary0
|
|
1713
|
+
color material_dynamic_primary10
|
|
1714
|
+
color material_dynamic_primary100
|
|
1715
|
+
color material_dynamic_primary20
|
|
1716
|
+
color material_dynamic_primary30
|
|
1717
|
+
color material_dynamic_primary40
|
|
1718
|
+
color material_dynamic_primary50
|
|
1719
|
+
color material_dynamic_primary60
|
|
1720
|
+
color material_dynamic_primary70
|
|
1721
|
+
color material_dynamic_primary80
|
|
1722
|
+
color material_dynamic_primary90
|
|
1723
|
+
color material_dynamic_primary95
|
|
1724
|
+
color material_dynamic_primary99
|
|
1725
|
+
color material_dynamic_secondary0
|
|
1726
|
+
color material_dynamic_secondary10
|
|
1727
|
+
color material_dynamic_secondary100
|
|
1728
|
+
color material_dynamic_secondary20
|
|
1729
|
+
color material_dynamic_secondary30
|
|
1730
|
+
color material_dynamic_secondary40
|
|
1731
|
+
color material_dynamic_secondary50
|
|
1732
|
+
color material_dynamic_secondary60
|
|
1733
|
+
color material_dynamic_secondary70
|
|
1734
|
+
color material_dynamic_secondary80
|
|
1735
|
+
color material_dynamic_secondary90
|
|
1736
|
+
color material_dynamic_secondary95
|
|
1737
|
+
color material_dynamic_secondary99
|
|
1738
|
+
color material_dynamic_tertiary0
|
|
1739
|
+
color material_dynamic_tertiary10
|
|
1740
|
+
color material_dynamic_tertiary100
|
|
1741
|
+
color material_dynamic_tertiary20
|
|
1742
|
+
color material_dynamic_tertiary30
|
|
1743
|
+
color material_dynamic_tertiary40
|
|
1744
|
+
color material_dynamic_tertiary50
|
|
1745
|
+
color material_dynamic_tertiary60
|
|
1746
|
+
color material_dynamic_tertiary70
|
|
1747
|
+
color material_dynamic_tertiary80
|
|
1748
|
+
color material_dynamic_tertiary90
|
|
1749
|
+
color material_dynamic_tertiary95
|
|
1750
|
+
color material_dynamic_tertiary99
|
|
752
1751
|
color material_grey_100
|
|
753
1752
|
color material_grey_300
|
|
754
1753
|
color material_grey_50
|
|
@@ -756,6 +1755,78 @@ color material_grey_600
|
|
|
756
1755
|
color material_grey_800
|
|
757
1756
|
color material_grey_850
|
|
758
1757
|
color material_grey_900
|
|
1758
|
+
color material_on_background_disabled
|
|
1759
|
+
color material_on_background_emphasis_high_type
|
|
1760
|
+
color material_on_background_emphasis_medium
|
|
1761
|
+
color material_on_primary_disabled
|
|
1762
|
+
color material_on_primary_emphasis_high_type
|
|
1763
|
+
color material_on_primary_emphasis_medium
|
|
1764
|
+
color material_on_surface_disabled
|
|
1765
|
+
color material_on_surface_emphasis_high_type
|
|
1766
|
+
color material_on_surface_emphasis_medium
|
|
1767
|
+
color material_on_surface_stroke
|
|
1768
|
+
color material_slider_active_tick_marks_color
|
|
1769
|
+
color material_slider_active_track_color
|
|
1770
|
+
color material_slider_halo_color
|
|
1771
|
+
color material_slider_inactive_tick_marks_color
|
|
1772
|
+
color material_slider_inactive_track_color
|
|
1773
|
+
color material_slider_thumb_color
|
|
1774
|
+
color material_timepicker_button_background
|
|
1775
|
+
color material_timepicker_button_stroke
|
|
1776
|
+
color material_timepicker_clock_text_color
|
|
1777
|
+
color material_timepicker_clockface
|
|
1778
|
+
color material_timepicker_modebutton_tint
|
|
1779
|
+
color mtrl_btn_bg_color_selector
|
|
1780
|
+
color mtrl_btn_ripple_color
|
|
1781
|
+
color mtrl_btn_stroke_color_selector
|
|
1782
|
+
color mtrl_btn_text_btn_bg_color_selector
|
|
1783
|
+
color mtrl_btn_text_btn_ripple_color
|
|
1784
|
+
color mtrl_btn_text_color_disabled
|
|
1785
|
+
color mtrl_btn_text_color_selector
|
|
1786
|
+
color mtrl_btn_transparent_bg_color
|
|
1787
|
+
color mtrl_calendar_item_stroke_color
|
|
1788
|
+
color mtrl_calendar_selected_range
|
|
1789
|
+
color mtrl_card_view_foreground
|
|
1790
|
+
color mtrl_card_view_ripple
|
|
1791
|
+
color mtrl_chip_background_color
|
|
1792
|
+
color mtrl_chip_close_icon_tint
|
|
1793
|
+
color mtrl_chip_surface_color
|
|
1794
|
+
color mtrl_chip_text_color
|
|
1795
|
+
color mtrl_choice_chip_background_color
|
|
1796
|
+
color mtrl_choice_chip_ripple_color
|
|
1797
|
+
color mtrl_choice_chip_text_color
|
|
1798
|
+
color mtrl_error
|
|
1799
|
+
color mtrl_fab_bg_color_selector
|
|
1800
|
+
color mtrl_fab_icon_text_color_selector
|
|
1801
|
+
color mtrl_fab_ripple_color
|
|
1802
|
+
color mtrl_filled_background_color
|
|
1803
|
+
color mtrl_filled_icon_tint
|
|
1804
|
+
color mtrl_filled_stroke_color
|
|
1805
|
+
color mtrl_indicator_text_color
|
|
1806
|
+
color mtrl_navigation_bar_colored_item_tint
|
|
1807
|
+
color mtrl_navigation_bar_colored_ripple_color
|
|
1808
|
+
color mtrl_navigation_bar_item_tint
|
|
1809
|
+
color mtrl_navigation_bar_ripple_color
|
|
1810
|
+
color mtrl_navigation_item_background_color
|
|
1811
|
+
color mtrl_navigation_item_icon_tint
|
|
1812
|
+
color mtrl_navigation_item_text_color
|
|
1813
|
+
color mtrl_on_primary_text_btn_text_color_selector
|
|
1814
|
+
color mtrl_on_surface_ripple_color
|
|
1815
|
+
color mtrl_outlined_icon_tint
|
|
1816
|
+
color mtrl_outlined_stroke_color
|
|
1817
|
+
color mtrl_popupmenu_overlay_color
|
|
1818
|
+
color mtrl_scrim_color
|
|
1819
|
+
color mtrl_tabs_colored_ripple_color
|
|
1820
|
+
color mtrl_tabs_icon_color_selector
|
|
1821
|
+
color mtrl_tabs_icon_color_selector_colored
|
|
1822
|
+
color mtrl_tabs_legacy_text_color_selector
|
|
1823
|
+
color mtrl_tabs_ripple_color
|
|
1824
|
+
color mtrl_text_btn_text_color_selector
|
|
1825
|
+
color mtrl_textinput_default_box_stroke_color
|
|
1826
|
+
color mtrl_textinput_disabled_color
|
|
1827
|
+
color mtrl_textinput_filled_box_default_background_color
|
|
1828
|
+
color mtrl_textinput_focused_box_stroke_color
|
|
1829
|
+
color mtrl_textinput_hovered_box_stroke_color
|
|
759
1830
|
color notification_action_color_filter
|
|
760
1831
|
color notification_icon_bg_color
|
|
761
1832
|
color notification_material_background_media_default_color
|
|
@@ -767,6 +1838,7 @@ color primary_text_default_material_dark
|
|
|
767
1838
|
color primary_text_default_material_light
|
|
768
1839
|
color primary_text_disabled_material_dark
|
|
769
1840
|
color primary_text_disabled_material_light
|
|
1841
|
+
color radiobutton_themeable_attribute_color
|
|
770
1842
|
color ripple_material_dark
|
|
771
1843
|
color ripple_material_light
|
|
772
1844
|
color secondary_text_default_material_dark
|
|
@@ -779,6 +1851,9 @@ color switch_thumb_material_dark
|
|
|
779
1851
|
color switch_thumb_material_light
|
|
780
1852
|
color switch_thumb_normal_material_dark
|
|
781
1853
|
color switch_thumb_normal_material_light
|
|
1854
|
+
color test_color
|
|
1855
|
+
color test_mtrl_calendar_day
|
|
1856
|
+
color test_mtrl_calendar_day_selected
|
|
782
1857
|
color tooltip_background_dark
|
|
783
1858
|
color tooltip_background_light
|
|
784
1859
|
color upsdk_color_gray_1
|
|
@@ -865,6 +1940,12 @@ dimen abc_text_size_subhead_material
|
|
|
865
1940
|
dimen abc_text_size_subtitle_material_toolbar
|
|
866
1941
|
dimen abc_text_size_title_material
|
|
867
1942
|
dimen abc_text_size_title_material_toolbar
|
|
1943
|
+
dimen action_bar_size
|
|
1944
|
+
dimen appcompat_dialog_background_inset
|
|
1945
|
+
dimen cardview_compat_inset_shadow
|
|
1946
|
+
dimen cardview_default_elevation
|
|
1947
|
+
dimen cardview_default_radius
|
|
1948
|
+
dimen clock_face_margin_start
|
|
868
1949
|
dimen compat_button_inset_horizontal_material
|
|
869
1950
|
dimen compat_button_inset_vertical_material
|
|
870
1951
|
dimen compat_button_padding_horizontal_material
|
|
@@ -872,6 +1953,56 @@ dimen compat_button_padding_vertical_material
|
|
|
872
1953
|
dimen compat_control_corner_material
|
|
873
1954
|
dimen compat_notification_large_icon_max_height
|
|
874
1955
|
dimen compat_notification_large_icon_max_width
|
|
1956
|
+
dimen def_drawer_elevation
|
|
1957
|
+
dimen default_dimension
|
|
1958
|
+
dimen design_appbar_elevation
|
|
1959
|
+
dimen design_bottom_navigation_active_item_max_width
|
|
1960
|
+
dimen design_bottom_navigation_active_item_min_width
|
|
1961
|
+
dimen design_bottom_navigation_active_text_size
|
|
1962
|
+
dimen design_bottom_navigation_elevation
|
|
1963
|
+
dimen design_bottom_navigation_height
|
|
1964
|
+
dimen design_bottom_navigation_icon_size
|
|
1965
|
+
dimen design_bottom_navigation_item_max_width
|
|
1966
|
+
dimen design_bottom_navigation_item_min_width
|
|
1967
|
+
dimen design_bottom_navigation_label_padding
|
|
1968
|
+
dimen design_bottom_navigation_margin
|
|
1969
|
+
dimen design_bottom_navigation_shadow_height
|
|
1970
|
+
dimen design_bottom_navigation_text_size
|
|
1971
|
+
dimen design_bottom_sheet_elevation
|
|
1972
|
+
dimen design_bottom_sheet_modal_elevation
|
|
1973
|
+
dimen design_bottom_sheet_peek_height_min
|
|
1974
|
+
dimen design_fab_border_width
|
|
1975
|
+
dimen design_fab_elevation
|
|
1976
|
+
dimen design_fab_image_size
|
|
1977
|
+
dimen design_fab_size_mini
|
|
1978
|
+
dimen design_fab_size_normal
|
|
1979
|
+
dimen design_fab_translation_z_hovered_focused
|
|
1980
|
+
dimen design_fab_translation_z_pressed
|
|
1981
|
+
dimen design_navigation_elevation
|
|
1982
|
+
dimen design_navigation_icon_padding
|
|
1983
|
+
dimen design_navigation_icon_size
|
|
1984
|
+
dimen design_navigation_item_horizontal_padding
|
|
1985
|
+
dimen design_navigation_item_icon_padding
|
|
1986
|
+
dimen design_navigation_item_vertical_padding
|
|
1987
|
+
dimen design_navigation_max_width
|
|
1988
|
+
dimen design_navigation_padding_bottom
|
|
1989
|
+
dimen design_navigation_separator_vertical_padding
|
|
1990
|
+
dimen design_snackbar_action_inline_max_width
|
|
1991
|
+
dimen design_snackbar_action_text_color_alpha
|
|
1992
|
+
dimen design_snackbar_background_corner_radius
|
|
1993
|
+
dimen design_snackbar_elevation
|
|
1994
|
+
dimen design_snackbar_extra_spacing_horizontal
|
|
1995
|
+
dimen design_snackbar_max_width
|
|
1996
|
+
dimen design_snackbar_min_width
|
|
1997
|
+
dimen design_snackbar_padding_horizontal
|
|
1998
|
+
dimen design_snackbar_padding_vertical
|
|
1999
|
+
dimen design_snackbar_padding_vertical_2lines
|
|
2000
|
+
dimen design_snackbar_text_size
|
|
2001
|
+
dimen design_tab_max_width
|
|
2002
|
+
dimen design_tab_scrollable_min_width
|
|
2003
|
+
dimen design_tab_text_size
|
|
2004
|
+
dimen design_tab_text_size_2line
|
|
2005
|
+
dimen design_textinput_caption_translate_y
|
|
875
2006
|
dimen disabled_alpha_material_dark
|
|
876
2007
|
dimen disabled_alpha_material_light
|
|
877
2008
|
dimen fastscroll_default_thickness
|
|
@@ -887,6 +2018,394 @@ dimen hint_pressed_alpha_material_light
|
|
|
887
2018
|
dimen item_touch_helper_max_drag_scroll_per_frame
|
|
888
2019
|
dimen item_touch_helper_swipe_escape_max_velocity
|
|
889
2020
|
dimen item_touch_helper_swipe_escape_velocity
|
|
2021
|
+
dimen m3_alert_dialog_action_bottom_padding
|
|
2022
|
+
dimen m3_alert_dialog_action_top_padding
|
|
2023
|
+
dimen m3_alert_dialog_corner_size
|
|
2024
|
+
dimen m3_alert_dialog_elevation
|
|
2025
|
+
dimen m3_alert_dialog_icon_margin
|
|
2026
|
+
dimen m3_alert_dialog_icon_size
|
|
2027
|
+
dimen m3_alert_dialog_title_bottom_margin
|
|
2028
|
+
dimen m3_appbar_expanded_title_margin_bottom
|
|
2029
|
+
dimen m3_appbar_expanded_title_margin_horizontal
|
|
2030
|
+
dimen m3_appbar_scrim_height_trigger
|
|
2031
|
+
dimen m3_appbar_scrim_height_trigger_large
|
|
2032
|
+
dimen m3_appbar_scrim_height_trigger_medium
|
|
2033
|
+
dimen m3_appbar_size_compact
|
|
2034
|
+
dimen m3_appbar_size_large
|
|
2035
|
+
dimen m3_appbar_size_medium
|
|
2036
|
+
dimen m3_badge_horizontal_offset
|
|
2037
|
+
dimen m3_badge_radius
|
|
2038
|
+
dimen m3_badge_vertical_offset
|
|
2039
|
+
dimen m3_badge_with_text_horizontal_offset
|
|
2040
|
+
dimen m3_badge_with_text_radius
|
|
2041
|
+
dimen m3_badge_with_text_vertical_offset
|
|
2042
|
+
dimen m3_bottom_nav_item_active_indicator_height
|
|
2043
|
+
dimen m3_bottom_nav_item_active_indicator_margin_horizontal
|
|
2044
|
+
dimen m3_bottom_nav_item_active_indicator_width
|
|
2045
|
+
dimen m3_bottom_nav_item_padding_bottom
|
|
2046
|
+
dimen m3_bottom_nav_item_padding_top
|
|
2047
|
+
dimen m3_bottom_nav_min_height
|
|
2048
|
+
dimen m3_bottom_sheet_elevation
|
|
2049
|
+
dimen m3_bottom_sheet_modal_elevation
|
|
2050
|
+
dimen m3_bottomappbar_fab_cradle_margin
|
|
2051
|
+
dimen m3_bottomappbar_fab_cradle_rounded_corner_radius
|
|
2052
|
+
dimen m3_bottomappbar_fab_cradle_vertical_offset
|
|
2053
|
+
dimen m3_btn_dialog_btn_min_width
|
|
2054
|
+
dimen m3_btn_dialog_btn_spacing
|
|
2055
|
+
dimen m3_btn_disabled_elevation
|
|
2056
|
+
dimen m3_btn_disabled_translation_z
|
|
2057
|
+
dimen m3_btn_elevated_btn_elevation
|
|
2058
|
+
dimen m3_btn_elevation
|
|
2059
|
+
dimen m3_btn_icon_btn_padding_left
|
|
2060
|
+
dimen m3_btn_icon_btn_padding_right
|
|
2061
|
+
dimen m3_btn_icon_only_default_padding
|
|
2062
|
+
dimen m3_btn_icon_only_default_size
|
|
2063
|
+
dimen m3_btn_icon_only_icon_padding
|
|
2064
|
+
dimen m3_btn_icon_only_min_width
|
|
2065
|
+
dimen m3_btn_inset
|
|
2066
|
+
dimen m3_btn_max_width
|
|
2067
|
+
dimen m3_btn_padding_bottom
|
|
2068
|
+
dimen m3_btn_padding_left
|
|
2069
|
+
dimen m3_btn_padding_right
|
|
2070
|
+
dimen m3_btn_padding_top
|
|
2071
|
+
dimen m3_btn_stroke_size
|
|
2072
|
+
dimen m3_btn_text_btn_icon_padding_left
|
|
2073
|
+
dimen m3_btn_text_btn_icon_padding_right
|
|
2074
|
+
dimen m3_btn_text_btn_padding_left
|
|
2075
|
+
dimen m3_btn_text_btn_padding_right
|
|
2076
|
+
dimen m3_btn_translation_z_base
|
|
2077
|
+
dimen m3_btn_translation_z_hovered
|
|
2078
|
+
dimen m3_card_dragged_z
|
|
2079
|
+
dimen m3_card_elevated_dragged_z
|
|
2080
|
+
dimen m3_card_elevated_elevation
|
|
2081
|
+
dimen m3_card_elevated_hovered_z
|
|
2082
|
+
dimen m3_card_elevation
|
|
2083
|
+
dimen m3_card_hovered_z
|
|
2084
|
+
dimen m3_card_stroke_width
|
|
2085
|
+
dimen m3_chip_checked_hovered_translation_z
|
|
2086
|
+
dimen m3_chip_corner_size
|
|
2087
|
+
dimen m3_chip_disabled_translation_z
|
|
2088
|
+
dimen m3_chip_dragged_translation_z
|
|
2089
|
+
dimen m3_chip_elevated_elevation
|
|
2090
|
+
dimen m3_chip_hovered_translation_z
|
|
2091
|
+
dimen m3_chip_icon_size
|
|
2092
|
+
dimen m3_datepicker_elevation
|
|
2093
|
+
dimen m3_divider_heavy_thickness
|
|
2094
|
+
dimen m3_extended_fab_bottom_padding
|
|
2095
|
+
dimen m3_extended_fab_end_padding
|
|
2096
|
+
dimen m3_extended_fab_icon_padding
|
|
2097
|
+
dimen m3_extended_fab_min_height
|
|
2098
|
+
dimen m3_extended_fab_start_padding
|
|
2099
|
+
dimen m3_extended_fab_top_padding
|
|
2100
|
+
dimen m3_fab_border_width
|
|
2101
|
+
dimen m3_fab_corner_size
|
|
2102
|
+
dimen m3_fab_translation_z_hovered_focused
|
|
2103
|
+
dimen m3_fab_translation_z_pressed
|
|
2104
|
+
dimen m3_large_fab_max_image_size
|
|
2105
|
+
dimen m3_large_fab_size
|
|
2106
|
+
dimen m3_menu_elevation
|
|
2107
|
+
dimen m3_navigation_drawer_layout_corner_size
|
|
2108
|
+
dimen m3_navigation_item_horizontal_padding
|
|
2109
|
+
dimen m3_navigation_item_icon_padding
|
|
2110
|
+
dimen m3_navigation_item_shape_inset_bottom
|
|
2111
|
+
dimen m3_navigation_item_shape_inset_end
|
|
2112
|
+
dimen m3_navigation_item_shape_inset_start
|
|
2113
|
+
dimen m3_navigation_item_shape_inset_top
|
|
2114
|
+
dimen m3_navigation_item_vertical_padding
|
|
2115
|
+
dimen m3_navigation_menu_divider_horizontal_padding
|
|
2116
|
+
dimen m3_navigation_menu_headline_horizontal_padding
|
|
2117
|
+
dimen m3_navigation_rail_default_width
|
|
2118
|
+
dimen m3_navigation_rail_item_active_indicator_height
|
|
2119
|
+
dimen m3_navigation_rail_item_active_indicator_margin_horizontal
|
|
2120
|
+
dimen m3_navigation_rail_item_active_indicator_width
|
|
2121
|
+
dimen m3_navigation_rail_item_min_height
|
|
2122
|
+
dimen m3_navigation_rail_item_padding_bottom
|
|
2123
|
+
dimen m3_navigation_rail_item_padding_top
|
|
2124
|
+
dimen m3_ripple_default_alpha
|
|
2125
|
+
dimen m3_ripple_focused_alpha
|
|
2126
|
+
dimen m3_ripple_hovered_alpha
|
|
2127
|
+
dimen m3_ripple_pressed_alpha
|
|
2128
|
+
dimen m3_ripple_selectable_pressed_alpha
|
|
2129
|
+
dimen m3_slider_thumb_elevation
|
|
2130
|
+
dimen m3_snackbar_action_text_color_alpha
|
|
2131
|
+
dimen m3_snackbar_margin
|
|
2132
|
+
dimen m3_sys_elevation_level0
|
|
2133
|
+
dimen m3_sys_elevation_level1
|
|
2134
|
+
dimen m3_sys_elevation_level2
|
|
2135
|
+
dimen m3_sys_elevation_level3
|
|
2136
|
+
dimen m3_sys_elevation_level4
|
|
2137
|
+
dimen m3_sys_elevation_level5
|
|
2138
|
+
dimen m3_sys_shape_large_corner_size
|
|
2139
|
+
dimen m3_sys_shape_medium_corner_size
|
|
2140
|
+
dimen m3_sys_shape_small_corner_size
|
|
2141
|
+
dimen m3_sys_state_dragged_state_layer_opacity
|
|
2142
|
+
dimen m3_sys_state_focus_state_layer_opacity
|
|
2143
|
+
dimen m3_sys_state_hover_state_layer_opacity
|
|
2144
|
+
dimen m3_sys_state_pressed_state_layer_opacity
|
|
2145
|
+
dimen m3_sys_typescale_body_large_letter_spacing
|
|
2146
|
+
dimen m3_sys_typescale_body_large_text_size
|
|
2147
|
+
dimen m3_sys_typescale_body_medium_letter_spacing
|
|
2148
|
+
dimen m3_sys_typescale_body_medium_text_size
|
|
2149
|
+
dimen m3_sys_typescale_body_small_letter_spacing
|
|
2150
|
+
dimen m3_sys_typescale_body_small_text_size
|
|
2151
|
+
dimen m3_sys_typescale_display_large_letter_spacing
|
|
2152
|
+
dimen m3_sys_typescale_display_large_text_size
|
|
2153
|
+
dimen m3_sys_typescale_display_medium_letter_spacing
|
|
2154
|
+
dimen m3_sys_typescale_display_medium_text_size
|
|
2155
|
+
dimen m3_sys_typescale_display_small_letter_spacing
|
|
2156
|
+
dimen m3_sys_typescale_display_small_text_size
|
|
2157
|
+
dimen m3_sys_typescale_headline_large_letter_spacing
|
|
2158
|
+
dimen m3_sys_typescale_headline_large_text_size
|
|
2159
|
+
dimen m3_sys_typescale_headline_medium_letter_spacing
|
|
2160
|
+
dimen m3_sys_typescale_headline_medium_text_size
|
|
2161
|
+
dimen m3_sys_typescale_headline_small_letter_spacing
|
|
2162
|
+
dimen m3_sys_typescale_headline_small_text_size
|
|
2163
|
+
dimen m3_sys_typescale_label_large_letter_spacing
|
|
2164
|
+
dimen m3_sys_typescale_label_large_text_size
|
|
2165
|
+
dimen m3_sys_typescale_label_medium_letter_spacing
|
|
2166
|
+
dimen m3_sys_typescale_label_medium_text_size
|
|
2167
|
+
dimen m3_sys_typescale_label_small_letter_spacing
|
|
2168
|
+
dimen m3_sys_typescale_label_small_text_size
|
|
2169
|
+
dimen m3_sys_typescale_title_large_letter_spacing
|
|
2170
|
+
dimen m3_sys_typescale_title_large_text_size
|
|
2171
|
+
dimen m3_sys_typescale_title_medium_letter_spacing
|
|
2172
|
+
dimen m3_sys_typescale_title_medium_text_size
|
|
2173
|
+
dimen m3_sys_typescale_title_small_letter_spacing
|
|
2174
|
+
dimen m3_sys_typescale_title_small_text_size
|
|
2175
|
+
dimen m3_timepicker_display_stroke_width
|
|
2176
|
+
dimen m3_timepicker_window_elevation
|
|
2177
|
+
dimen material_bottom_sheet_max_width
|
|
2178
|
+
dimen material_clock_display_padding
|
|
2179
|
+
dimen material_clock_face_margin_top
|
|
2180
|
+
dimen material_clock_hand_center_dot_radius
|
|
2181
|
+
dimen material_clock_hand_padding
|
|
2182
|
+
dimen material_clock_hand_stroke_width
|
|
2183
|
+
dimen material_clock_number_text_size
|
|
2184
|
+
dimen material_clock_period_toggle_height
|
|
2185
|
+
dimen material_clock_period_toggle_margin_left
|
|
2186
|
+
dimen material_clock_period_toggle_width
|
|
2187
|
+
dimen material_clock_size
|
|
2188
|
+
dimen material_cursor_inset_bottom
|
|
2189
|
+
dimen material_cursor_inset_top
|
|
2190
|
+
dimen material_cursor_width
|
|
2191
|
+
dimen material_divider_thickness
|
|
2192
|
+
dimen material_emphasis_disabled
|
|
2193
|
+
dimen material_emphasis_disabled_background
|
|
2194
|
+
dimen material_emphasis_high_type
|
|
2195
|
+
dimen material_emphasis_medium
|
|
2196
|
+
dimen material_filled_edittext_font_1_3_padding_bottom
|
|
2197
|
+
dimen material_filled_edittext_font_1_3_padding_top
|
|
2198
|
+
dimen material_filled_edittext_font_2_0_padding_bottom
|
|
2199
|
+
dimen material_filled_edittext_font_2_0_padding_top
|
|
2200
|
+
dimen material_font_1_3_box_collapsed_padding_top
|
|
2201
|
+
dimen material_font_2_0_box_collapsed_padding_top
|
|
2202
|
+
dimen material_helper_text_default_padding_top
|
|
2203
|
+
dimen material_helper_text_font_1_3_padding_horizontal
|
|
2204
|
+
dimen material_helper_text_font_1_3_padding_top
|
|
2205
|
+
dimen material_input_text_to_prefix_suffix_padding
|
|
2206
|
+
dimen material_text_view_test_line_height
|
|
2207
|
+
dimen material_text_view_test_line_height_override
|
|
2208
|
+
dimen material_textinput_default_width
|
|
2209
|
+
dimen material_textinput_max_width
|
|
2210
|
+
dimen material_textinput_min_width
|
|
2211
|
+
dimen material_time_picker_minimum_screen_height
|
|
2212
|
+
dimen material_time_picker_minimum_screen_width
|
|
2213
|
+
dimen material_timepicker_dialog_buttons_margin_top
|
|
2214
|
+
dimen mtrl_alert_dialog_background_inset_bottom
|
|
2215
|
+
dimen mtrl_alert_dialog_background_inset_end
|
|
2216
|
+
dimen mtrl_alert_dialog_background_inset_start
|
|
2217
|
+
dimen mtrl_alert_dialog_background_inset_top
|
|
2218
|
+
dimen mtrl_alert_dialog_picker_background_inset
|
|
2219
|
+
dimen mtrl_badge_horizontal_edge_offset
|
|
2220
|
+
dimen mtrl_badge_long_text_horizontal_padding
|
|
2221
|
+
dimen mtrl_badge_radius
|
|
2222
|
+
dimen mtrl_badge_text_horizontal_edge_offset
|
|
2223
|
+
dimen mtrl_badge_text_size
|
|
2224
|
+
dimen mtrl_badge_toolbar_action_menu_item_horizontal_offset
|
|
2225
|
+
dimen mtrl_badge_toolbar_action_menu_item_vertical_offset
|
|
2226
|
+
dimen mtrl_badge_with_text_radius
|
|
2227
|
+
dimen mtrl_bottomappbar_fabOffsetEndMode
|
|
2228
|
+
dimen mtrl_bottomappbar_fab_bottom_margin
|
|
2229
|
+
dimen mtrl_bottomappbar_fab_cradle_margin
|
|
2230
|
+
dimen mtrl_bottomappbar_fab_cradle_rounded_corner_radius
|
|
2231
|
+
dimen mtrl_bottomappbar_fab_cradle_vertical_offset
|
|
2232
|
+
dimen mtrl_bottomappbar_height
|
|
2233
|
+
dimen mtrl_btn_corner_radius
|
|
2234
|
+
dimen mtrl_btn_dialog_btn_min_width
|
|
2235
|
+
dimen mtrl_btn_disabled_elevation
|
|
2236
|
+
dimen mtrl_btn_disabled_z
|
|
2237
|
+
dimen mtrl_btn_elevation
|
|
2238
|
+
dimen mtrl_btn_focused_z
|
|
2239
|
+
dimen mtrl_btn_hovered_z
|
|
2240
|
+
dimen mtrl_btn_icon_btn_padding_left
|
|
2241
|
+
dimen mtrl_btn_icon_padding
|
|
2242
|
+
dimen mtrl_btn_inset
|
|
2243
|
+
dimen mtrl_btn_letter_spacing
|
|
2244
|
+
dimen mtrl_btn_max_width
|
|
2245
|
+
dimen mtrl_btn_padding_bottom
|
|
2246
|
+
dimen mtrl_btn_padding_left
|
|
2247
|
+
dimen mtrl_btn_padding_right
|
|
2248
|
+
dimen mtrl_btn_padding_top
|
|
2249
|
+
dimen mtrl_btn_pressed_z
|
|
2250
|
+
dimen mtrl_btn_snackbar_margin_horizontal
|
|
2251
|
+
dimen mtrl_btn_stroke_size
|
|
2252
|
+
dimen mtrl_btn_text_btn_icon_padding
|
|
2253
|
+
dimen mtrl_btn_text_btn_padding_left
|
|
2254
|
+
dimen mtrl_btn_text_btn_padding_right
|
|
2255
|
+
dimen mtrl_btn_text_size
|
|
2256
|
+
dimen mtrl_btn_z
|
|
2257
|
+
dimen mtrl_calendar_action_confirm_button_min_width
|
|
2258
|
+
dimen mtrl_calendar_action_height
|
|
2259
|
+
dimen mtrl_calendar_action_padding
|
|
2260
|
+
dimen mtrl_calendar_bottom_padding
|
|
2261
|
+
dimen mtrl_calendar_content_padding
|
|
2262
|
+
dimen mtrl_calendar_day_corner
|
|
2263
|
+
dimen mtrl_calendar_day_height
|
|
2264
|
+
dimen mtrl_calendar_day_horizontal_padding
|
|
2265
|
+
dimen mtrl_calendar_day_today_stroke
|
|
2266
|
+
dimen mtrl_calendar_day_vertical_padding
|
|
2267
|
+
dimen mtrl_calendar_day_width
|
|
2268
|
+
dimen mtrl_calendar_days_of_week_height
|
|
2269
|
+
dimen mtrl_calendar_dialog_background_inset
|
|
2270
|
+
dimen mtrl_calendar_header_content_padding
|
|
2271
|
+
dimen mtrl_calendar_header_content_padding_fullscreen
|
|
2272
|
+
dimen mtrl_calendar_header_divider_thickness
|
|
2273
|
+
dimen mtrl_calendar_header_height
|
|
2274
|
+
dimen mtrl_calendar_header_height_fullscreen
|
|
2275
|
+
dimen mtrl_calendar_header_selection_line_height
|
|
2276
|
+
dimen mtrl_calendar_header_text_padding
|
|
2277
|
+
dimen mtrl_calendar_header_toggle_margin_bottom
|
|
2278
|
+
dimen mtrl_calendar_header_toggle_margin_top
|
|
2279
|
+
dimen mtrl_calendar_landscape_header_width
|
|
2280
|
+
dimen mtrl_calendar_maximum_default_fullscreen_minor_axis
|
|
2281
|
+
dimen mtrl_calendar_month_horizontal_padding
|
|
2282
|
+
dimen mtrl_calendar_month_vertical_padding
|
|
2283
|
+
dimen mtrl_calendar_navigation_bottom_padding
|
|
2284
|
+
dimen mtrl_calendar_navigation_height
|
|
2285
|
+
dimen mtrl_calendar_navigation_top_padding
|
|
2286
|
+
dimen mtrl_calendar_pre_l_text_clip_padding
|
|
2287
|
+
dimen mtrl_calendar_selection_baseline_to_top_fullscreen
|
|
2288
|
+
dimen mtrl_calendar_selection_text_baseline_to_bottom
|
|
2289
|
+
dimen mtrl_calendar_selection_text_baseline_to_bottom_fullscreen
|
|
2290
|
+
dimen mtrl_calendar_selection_text_baseline_to_top
|
|
2291
|
+
dimen mtrl_calendar_text_input_padding_top
|
|
2292
|
+
dimen mtrl_calendar_title_baseline_to_top
|
|
2293
|
+
dimen mtrl_calendar_title_baseline_to_top_fullscreen
|
|
2294
|
+
dimen mtrl_calendar_year_corner
|
|
2295
|
+
dimen mtrl_calendar_year_height
|
|
2296
|
+
dimen mtrl_calendar_year_horizontal_padding
|
|
2297
|
+
dimen mtrl_calendar_year_vertical_padding
|
|
2298
|
+
dimen mtrl_calendar_year_width
|
|
2299
|
+
dimen mtrl_card_checked_icon_margin
|
|
2300
|
+
dimen mtrl_card_checked_icon_size
|
|
2301
|
+
dimen mtrl_card_corner_radius
|
|
2302
|
+
dimen mtrl_card_dragged_z
|
|
2303
|
+
dimen mtrl_card_elevation
|
|
2304
|
+
dimen mtrl_card_spacing
|
|
2305
|
+
dimen mtrl_chip_pressed_translation_z
|
|
2306
|
+
dimen mtrl_chip_text_size
|
|
2307
|
+
dimen mtrl_edittext_rectangle_top_offset
|
|
2308
|
+
dimen mtrl_exposed_dropdown_menu_popup_elevation
|
|
2309
|
+
dimen mtrl_exposed_dropdown_menu_popup_vertical_offset
|
|
2310
|
+
dimen mtrl_exposed_dropdown_menu_popup_vertical_padding
|
|
2311
|
+
dimen mtrl_extended_fab_bottom_padding
|
|
2312
|
+
dimen mtrl_extended_fab_corner_radius
|
|
2313
|
+
dimen mtrl_extended_fab_disabled_elevation
|
|
2314
|
+
dimen mtrl_extended_fab_disabled_translation_z
|
|
2315
|
+
dimen mtrl_extended_fab_elevation
|
|
2316
|
+
dimen mtrl_extended_fab_end_padding
|
|
2317
|
+
dimen mtrl_extended_fab_end_padding_icon
|
|
2318
|
+
dimen mtrl_extended_fab_icon_size
|
|
2319
|
+
dimen mtrl_extended_fab_icon_text_spacing
|
|
2320
|
+
dimen mtrl_extended_fab_min_height
|
|
2321
|
+
dimen mtrl_extended_fab_min_width
|
|
2322
|
+
dimen mtrl_extended_fab_start_padding
|
|
2323
|
+
dimen mtrl_extended_fab_start_padding_icon
|
|
2324
|
+
dimen mtrl_extended_fab_top_padding
|
|
2325
|
+
dimen mtrl_extended_fab_translation_z_base
|
|
2326
|
+
dimen mtrl_extended_fab_translation_z_hovered_focused
|
|
2327
|
+
dimen mtrl_extended_fab_translation_z_pressed
|
|
2328
|
+
dimen mtrl_fab_elevation
|
|
2329
|
+
dimen mtrl_fab_min_touch_target
|
|
2330
|
+
dimen mtrl_fab_translation_z_hovered_focused
|
|
2331
|
+
dimen mtrl_fab_translation_z_pressed
|
|
2332
|
+
dimen mtrl_high_ripple_default_alpha
|
|
2333
|
+
dimen mtrl_high_ripple_focused_alpha
|
|
2334
|
+
dimen mtrl_high_ripple_hovered_alpha
|
|
2335
|
+
dimen mtrl_high_ripple_pressed_alpha
|
|
2336
|
+
dimen mtrl_large_touch_target
|
|
2337
|
+
dimen mtrl_low_ripple_default_alpha
|
|
2338
|
+
dimen mtrl_low_ripple_focused_alpha
|
|
2339
|
+
dimen mtrl_low_ripple_hovered_alpha
|
|
2340
|
+
dimen mtrl_low_ripple_pressed_alpha
|
|
2341
|
+
dimen mtrl_min_touch_target_size
|
|
2342
|
+
dimen mtrl_navigation_bar_item_default_icon_size
|
|
2343
|
+
dimen mtrl_navigation_bar_item_default_margin
|
|
2344
|
+
dimen mtrl_navigation_elevation
|
|
2345
|
+
dimen mtrl_navigation_item_horizontal_padding
|
|
2346
|
+
dimen mtrl_navigation_item_icon_padding
|
|
2347
|
+
dimen mtrl_navigation_item_icon_size
|
|
2348
|
+
dimen mtrl_navigation_item_shape_horizontal_margin
|
|
2349
|
+
dimen mtrl_navigation_item_shape_vertical_margin
|
|
2350
|
+
dimen mtrl_navigation_rail_active_text_size
|
|
2351
|
+
dimen mtrl_navigation_rail_compact_width
|
|
2352
|
+
dimen mtrl_navigation_rail_default_width
|
|
2353
|
+
dimen mtrl_navigation_rail_elevation
|
|
2354
|
+
dimen mtrl_navigation_rail_icon_margin
|
|
2355
|
+
dimen mtrl_navigation_rail_icon_size
|
|
2356
|
+
dimen mtrl_navigation_rail_margin
|
|
2357
|
+
dimen mtrl_navigation_rail_text_bottom_margin
|
|
2358
|
+
dimen mtrl_navigation_rail_text_size
|
|
2359
|
+
dimen mtrl_progress_circular_inset
|
|
2360
|
+
dimen mtrl_progress_circular_inset_extra_small
|
|
2361
|
+
dimen mtrl_progress_circular_inset_medium
|
|
2362
|
+
dimen mtrl_progress_circular_inset_small
|
|
2363
|
+
dimen mtrl_progress_circular_radius
|
|
2364
|
+
dimen mtrl_progress_circular_size
|
|
2365
|
+
dimen mtrl_progress_circular_size_extra_small
|
|
2366
|
+
dimen mtrl_progress_circular_size_medium
|
|
2367
|
+
dimen mtrl_progress_circular_size_small
|
|
2368
|
+
dimen mtrl_progress_circular_track_thickness_extra_small
|
|
2369
|
+
dimen mtrl_progress_circular_track_thickness_medium
|
|
2370
|
+
dimen mtrl_progress_circular_track_thickness_small
|
|
2371
|
+
dimen mtrl_progress_indicator_full_rounded_corner_radius
|
|
2372
|
+
dimen mtrl_progress_track_thickness
|
|
2373
|
+
dimen mtrl_shape_corner_size_large_component
|
|
2374
|
+
dimen mtrl_shape_corner_size_medium_component
|
|
2375
|
+
dimen mtrl_shape_corner_size_small_component
|
|
2376
|
+
dimen mtrl_slider_halo_radius
|
|
2377
|
+
dimen mtrl_slider_label_padding
|
|
2378
|
+
dimen mtrl_slider_label_radius
|
|
2379
|
+
dimen mtrl_slider_label_square_side
|
|
2380
|
+
dimen mtrl_slider_thumb_elevation
|
|
2381
|
+
dimen mtrl_slider_thumb_radius
|
|
2382
|
+
dimen mtrl_slider_track_height
|
|
2383
|
+
dimen mtrl_slider_track_side_padding
|
|
2384
|
+
dimen mtrl_slider_track_top
|
|
2385
|
+
dimen mtrl_slider_widget_height
|
|
2386
|
+
dimen mtrl_snackbar_action_text_color_alpha
|
|
2387
|
+
dimen mtrl_snackbar_background_corner_radius
|
|
2388
|
+
dimen mtrl_snackbar_background_overlay_color_alpha
|
|
2389
|
+
dimen mtrl_snackbar_margin
|
|
2390
|
+
dimen mtrl_snackbar_message_margin_horizontal
|
|
2391
|
+
dimen mtrl_snackbar_padding_horizontal
|
|
2392
|
+
dimen mtrl_switch_thumb_elevation
|
|
2393
|
+
dimen mtrl_textinput_box_corner_radius_medium
|
|
2394
|
+
dimen mtrl_textinput_box_corner_radius_small
|
|
2395
|
+
dimen mtrl_textinput_box_label_cutout_padding
|
|
2396
|
+
dimen mtrl_textinput_box_stroke_width_default
|
|
2397
|
+
dimen mtrl_textinput_box_stroke_width_focused
|
|
2398
|
+
dimen mtrl_textinput_counter_margin_start
|
|
2399
|
+
dimen mtrl_textinput_end_icon_margin_start
|
|
2400
|
+
dimen mtrl_textinput_outline_box_expanded_padding
|
|
2401
|
+
dimen mtrl_textinput_start_icon_margin_end
|
|
2402
|
+
dimen mtrl_toolbar_default_height
|
|
2403
|
+
dimen mtrl_tooltip_arrowSize
|
|
2404
|
+
dimen mtrl_tooltip_cornerSize
|
|
2405
|
+
dimen mtrl_tooltip_minHeight
|
|
2406
|
+
dimen mtrl_tooltip_minWidth
|
|
2407
|
+
dimen mtrl_tooltip_padding
|
|
2408
|
+
dimen mtrl_transition_shared_axis_slide_distance
|
|
890
2409
|
dimen netmera_layout_default_elevation
|
|
891
2410
|
dimen netmera_layout_default_margin
|
|
892
2411
|
dimen netmera_layout_large_margin
|
|
@@ -912,6 +2431,19 @@ dimen subtitle_corner_radius
|
|
|
912
2431
|
dimen subtitle_outline_width
|
|
913
2432
|
dimen subtitle_shadow_offset
|
|
914
2433
|
dimen subtitle_shadow_radius
|
|
2434
|
+
dimen test_dimen
|
|
2435
|
+
dimen test_mtrl_calendar_day_cornerSize
|
|
2436
|
+
dimen test_navigation_bar_active_item_max_width
|
|
2437
|
+
dimen test_navigation_bar_active_item_min_width
|
|
2438
|
+
dimen test_navigation_bar_active_text_size
|
|
2439
|
+
dimen test_navigation_bar_elevation
|
|
2440
|
+
dimen test_navigation_bar_height
|
|
2441
|
+
dimen test_navigation_bar_icon_size
|
|
2442
|
+
dimen test_navigation_bar_item_max_width
|
|
2443
|
+
dimen test_navigation_bar_item_min_width
|
|
2444
|
+
dimen test_navigation_bar_label_padding
|
|
2445
|
+
dimen test_navigation_bar_shadow_height
|
|
2446
|
+
dimen test_navigation_bar_text_size
|
|
915
2447
|
dimen tooltip_corner_radius
|
|
916
2448
|
dimen tooltip_horizontal_padding
|
|
917
2449
|
dimen tooltip_margin
|
|
@@ -1016,6 +2548,11 @@ drawable abc_textfield_search_activated_mtrl_alpha
|
|
|
1016
2548
|
drawable abc_textfield_search_default_mtrl_alpha
|
|
1017
2549
|
drawable abc_textfield_search_material
|
|
1018
2550
|
drawable abc_vector_test
|
|
2551
|
+
drawable adaptive_icon
|
|
2552
|
+
drawable adaptive_icon_background
|
|
2553
|
+
drawable adaptive_icon_foreground
|
|
2554
|
+
drawable avd_hide_password
|
|
2555
|
+
drawable avd_show_password
|
|
1019
2556
|
drawable btn_checkbox_checked_mtrl
|
|
1020
2557
|
drawable btn_checkbox_checked_to_unchecked_mtrl_animation
|
|
1021
2558
|
drawable btn_checkbox_unchecked_mtrl
|
|
@@ -1043,11 +2580,57 @@ drawable common_google_signin_btn_text_light
|
|
|
1043
2580
|
drawable common_google_signin_btn_text_light_focused
|
|
1044
2581
|
drawable common_google_signin_btn_text_light_normal
|
|
1045
2582
|
drawable common_google_signin_btn_text_light_normal_background
|
|
2583
|
+
drawable design_fab_background
|
|
2584
|
+
drawable design_ic_visibility
|
|
2585
|
+
drawable design_ic_visibility_off
|
|
2586
|
+
drawable design_password_eye
|
|
2587
|
+
drawable design_snackbar_background
|
|
2588
|
+
drawable gcm_icon
|
|
2589
|
+
drawable gcm_icon2
|
|
1046
2590
|
drawable googleg_disabled_color_18
|
|
1047
2591
|
drawable googleg_standard_color_18
|
|
1048
2592
|
drawable ic_carousel_next_icon
|
|
1049
2593
|
drawable ic_carousel_prev_icon
|
|
2594
|
+
drawable ic_clock_black_24dp
|
|
2595
|
+
drawable ic_keyboard_black_24dp
|
|
2596
|
+
drawable ic_m3_chip_check
|
|
2597
|
+
drawable ic_m3_chip_checked_circle
|
|
2598
|
+
drawable ic_m3_chip_close
|
|
2599
|
+
drawable ic_mtrl_checked_circle
|
|
2600
|
+
drawable ic_mtrl_chip_checked_black
|
|
2601
|
+
drawable ic_mtrl_chip_checked_circle
|
|
2602
|
+
drawable ic_mtrl_chip_close_circle
|
|
1050
2603
|
drawable ic_umbrella_background
|
|
2604
|
+
drawable icon_with_gradient
|
|
2605
|
+
drawable m3_appbar_background
|
|
2606
|
+
drawable m3_popupmenu_background_overlay
|
|
2607
|
+
drawable m3_radiobutton_ripple
|
|
2608
|
+
drawable m3_selection_control_ripple
|
|
2609
|
+
drawable m3_tabs_background
|
|
2610
|
+
drawable m3_tabs_line_indicator
|
|
2611
|
+
drawable m3_tabs_rounded_line_indicator
|
|
2612
|
+
drawable m3_tabs_transparent_background
|
|
2613
|
+
drawable material_cursor_drawable
|
|
2614
|
+
drawable material_ic_calendar_black_24dp
|
|
2615
|
+
drawable material_ic_clear_black_24dp
|
|
2616
|
+
drawable material_ic_edit_black_24dp
|
|
2617
|
+
drawable material_ic_keyboard_arrow_left_black_24dp
|
|
2618
|
+
drawable material_ic_keyboard_arrow_next_black_24dp
|
|
2619
|
+
drawable material_ic_keyboard_arrow_previous_black_24dp
|
|
2620
|
+
drawable material_ic_keyboard_arrow_right_black_24dp
|
|
2621
|
+
drawable material_ic_menu_arrow_down_black_24dp
|
|
2622
|
+
drawable material_ic_menu_arrow_up_black_24dp
|
|
2623
|
+
drawable mtrl_dialog_background
|
|
2624
|
+
drawable mtrl_dropdown_arrow
|
|
2625
|
+
drawable mtrl_ic_arrow_drop_down
|
|
2626
|
+
drawable mtrl_ic_arrow_drop_up
|
|
2627
|
+
drawable mtrl_ic_cancel
|
|
2628
|
+
drawable mtrl_ic_error
|
|
2629
|
+
drawable mtrl_navigation_bar_item_background
|
|
2630
|
+
drawable mtrl_popupmenu_background
|
|
2631
|
+
drawable mtrl_popupmenu_background_overlay
|
|
2632
|
+
drawable mtrl_tabs_default_indicator
|
|
2633
|
+
drawable navigation_empty_icon
|
|
1051
2634
|
drawable netmera_bg_in_app_message
|
|
1052
2635
|
drawable netmera_ic_action_cancel
|
|
1053
2636
|
drawable netmera_ic_action_transparent
|
|
@@ -1064,16 +2647,22 @@ drawable notification_template_icon_low_bg
|
|
|
1064
2647
|
drawable notification_tile_bg
|
|
1065
2648
|
drawable notify_panel_notification_icon_bg
|
|
1066
2649
|
drawable redbox_top_border_background
|
|
2650
|
+
drawable test_custom_background
|
|
2651
|
+
drawable test_level_drawable
|
|
1067
2652
|
drawable tooltip_frame_dark
|
|
1068
2653
|
drawable tooltip_frame_light
|
|
1069
2654
|
drawable upsdk_cancel_bg
|
|
1070
2655
|
drawable upsdk_cancel_normal
|
|
1071
2656
|
drawable upsdk_cancel_pressed_bg
|
|
1072
2657
|
drawable upsdk_third_download_bg
|
|
2658
|
+
id BOTTOM_END
|
|
2659
|
+
id BOTTOM_START
|
|
1073
2660
|
id NO_DEBUG
|
|
1074
2661
|
id SHOW_ALL
|
|
1075
2662
|
id SHOW_PATH
|
|
1076
2663
|
id SHOW_PROGRESS
|
|
2664
|
+
id TOP_END
|
|
2665
|
+
id TOP_START
|
|
1077
2666
|
id accelerate
|
|
1078
2667
|
id accessibility_action_clickable_span
|
|
1079
2668
|
id accessibility_actions
|
|
@@ -1150,20 +2739,24 @@ id animateToStart
|
|
|
1150
2739
|
id antiClockwise
|
|
1151
2740
|
id anticipate
|
|
1152
2741
|
id appsize_textview
|
|
2742
|
+
id arc
|
|
1153
2743
|
id asConfigured
|
|
1154
2744
|
id async
|
|
1155
2745
|
id auto
|
|
1156
2746
|
id autoComplete
|
|
1157
2747
|
id autoCompleteToEnd
|
|
1158
2748
|
id autoCompleteToStart
|
|
2749
|
+
id barrier
|
|
1159
2750
|
id baseline
|
|
1160
2751
|
id bestChoice
|
|
1161
2752
|
id blocking
|
|
1162
2753
|
id bottom
|
|
1163
2754
|
id bounce
|
|
1164
2755
|
id buttonPanel
|
|
2756
|
+
id callMeasure
|
|
1165
2757
|
id cancel_action
|
|
1166
2758
|
id cancel_bg
|
|
2759
|
+
id cancel_button
|
|
1167
2760
|
id cancel_imageview
|
|
1168
2761
|
id carryVelocity
|
|
1169
2762
|
id catalyst_redbox_title
|
|
@@ -1171,29 +2764,50 @@ id center
|
|
|
1171
2764
|
id centerCrop
|
|
1172
2765
|
id centerInside
|
|
1173
2766
|
id chain
|
|
2767
|
+
id chain2
|
|
1174
2768
|
id checkbox
|
|
1175
2769
|
id checked
|
|
2770
|
+
id chip
|
|
2771
|
+
id chip1
|
|
2772
|
+
id chip2
|
|
2773
|
+
id chip3
|
|
2774
|
+
id chip_group
|
|
1176
2775
|
id chronometer
|
|
2776
|
+
id circle_center
|
|
2777
|
+
id clear_text
|
|
1177
2778
|
id clockwise
|
|
1178
2779
|
id closest
|
|
2780
|
+
id compress
|
|
2781
|
+
id confirm_button
|
|
1179
2782
|
id constraint
|
|
1180
2783
|
id container
|
|
1181
2784
|
id content
|
|
1182
2785
|
id contentPanel
|
|
1183
2786
|
id content_layout
|
|
1184
2787
|
id content_textview
|
|
2788
|
+
id contiguous
|
|
1185
2789
|
id continuousVelocity
|
|
2790
|
+
id coordinator
|
|
1186
2791
|
id cos
|
|
2792
|
+
id counterclockwise
|
|
1187
2793
|
id currentState
|
|
1188
2794
|
id custom
|
|
1189
2795
|
id customPanel
|
|
2796
|
+
id cut
|
|
1190
2797
|
id dark
|
|
2798
|
+
id date_picker_actions
|
|
1191
2799
|
id decelerate
|
|
1192
2800
|
id decelerateAndComplete
|
|
1193
2801
|
id decor_content_parent
|
|
1194
2802
|
id default_activity_button
|
|
1195
2803
|
id deltaRelative
|
|
2804
|
+
id design_bottom_sheet
|
|
2805
|
+
id design_menu_item_action_area
|
|
2806
|
+
id design_menu_item_action_area_stub
|
|
2807
|
+
id design_menu_item_text
|
|
2808
|
+
id design_navigation_view
|
|
1196
2809
|
id dialog_button
|
|
2810
|
+
id disjoint
|
|
1197
2811
|
id divider
|
|
1198
2812
|
id download_info_progress
|
|
1199
2813
|
id dragAnticlockwise
|
|
@@ -1204,33 +2818,45 @@ id dragLeft
|
|
|
1204
2818
|
id dragRight
|
|
1205
2819
|
id dragStart
|
|
1206
2820
|
id dragUp
|
|
2821
|
+
id dropdown_menu
|
|
1207
2822
|
id easeIn
|
|
1208
2823
|
id easeInOut
|
|
1209
2824
|
id easeOut
|
|
1210
2825
|
id east
|
|
1211
2826
|
id edit_query
|
|
2827
|
+
id elastic
|
|
1212
2828
|
id enable_service_text
|
|
1213
2829
|
id end
|
|
2830
|
+
id endToStart
|
|
1214
2831
|
id end_padder
|
|
1215
2832
|
id expand_activities_button
|
|
1216
2833
|
id expanded_menu
|
|
2834
|
+
id fade
|
|
2835
|
+
id fill
|
|
2836
|
+
id filled
|
|
1217
2837
|
id fitBottomStart
|
|
1218
2838
|
id fitCenter
|
|
1219
2839
|
id fitEnd
|
|
1220
2840
|
id fitStart
|
|
1221
2841
|
id fitXY
|
|
2842
|
+
id fixed
|
|
1222
2843
|
id flLeftCorner
|
|
1223
2844
|
id flRightCorner
|
|
1224
2845
|
id flip
|
|
2846
|
+
id floating
|
|
1225
2847
|
id focusCrop
|
|
1226
2848
|
id forever
|
|
1227
2849
|
id fps_text
|
|
1228
2850
|
id fragment_container_view_tag
|
|
1229
2851
|
id frost
|
|
2852
|
+
id ghost_view
|
|
2853
|
+
id ghost_view_holder
|
|
1230
2854
|
id glThumps
|
|
1231
2855
|
id glide_custom_view_target_tag
|
|
1232
2856
|
id gone
|
|
1233
2857
|
id group_divider
|
|
2858
|
+
id guideline
|
|
2859
|
+
id header_title
|
|
1234
2860
|
id hms_message_text
|
|
1235
2861
|
id hms_progress_bar
|
|
1236
2862
|
id hms_progress_text
|
|
@@ -1247,7 +2873,12 @@ id immediateStop
|
|
|
1247
2873
|
id included
|
|
1248
2874
|
id info
|
|
1249
2875
|
id invisible
|
|
2876
|
+
id inward
|
|
1250
2877
|
id italic
|
|
2878
|
+
id item1
|
|
2879
|
+
id item2
|
|
2880
|
+
id item3
|
|
2881
|
+
id item4
|
|
1251
2882
|
id item_touch_helper_previous_elevation
|
|
1252
2883
|
id ivAppIcon
|
|
1253
2884
|
id ivBanner
|
|
@@ -1262,23 +2893,82 @@ id ivPrev
|
|
|
1262
2893
|
id ivRight
|
|
1263
2894
|
id jumpToEnd
|
|
1264
2895
|
id jumpToStart
|
|
2896
|
+
id labeled
|
|
1265
2897
|
id layout
|
|
1266
2898
|
id left
|
|
2899
|
+
id leftToRight
|
|
1267
2900
|
id light
|
|
1268
2901
|
id line1
|
|
1269
2902
|
id line3
|
|
1270
2903
|
id linear
|
|
1271
2904
|
id listMode
|
|
1272
2905
|
id list_item
|
|
2906
|
+
id masked
|
|
1273
2907
|
id match_constraint
|
|
1274
2908
|
id match_parent
|
|
2909
|
+
id material_clock_display
|
|
2910
|
+
id material_clock_face
|
|
2911
|
+
id material_clock_hand
|
|
2912
|
+
id material_clock_period_am_button
|
|
2913
|
+
id material_clock_period_pm_button
|
|
2914
|
+
id material_clock_period_toggle
|
|
2915
|
+
id material_hour_text_input
|
|
2916
|
+
id material_hour_tv
|
|
2917
|
+
id material_label
|
|
2918
|
+
id material_minute_text_input
|
|
2919
|
+
id material_minute_tv
|
|
2920
|
+
id material_textinput_timepicker
|
|
2921
|
+
id material_timepicker_cancel_button
|
|
2922
|
+
id material_timepicker_container
|
|
2923
|
+
id material_timepicker_edit_text
|
|
2924
|
+
id material_timepicker_mode_button
|
|
2925
|
+
id material_timepicker_ok_button
|
|
2926
|
+
id material_timepicker_view
|
|
2927
|
+
id material_value_index
|
|
1275
2928
|
id media_actions
|
|
1276
2929
|
id message
|
|
1277
2930
|
id middle
|
|
2931
|
+
id mini
|
|
2932
|
+
id month_grid
|
|
2933
|
+
id month_navigation_bar
|
|
2934
|
+
id month_navigation_fragment_toggle
|
|
2935
|
+
id month_navigation_next
|
|
2936
|
+
id month_navigation_previous
|
|
2937
|
+
id month_title
|
|
1278
2938
|
id motion_base
|
|
2939
|
+
id mtrl_anchor_parent
|
|
2940
|
+
id mtrl_calendar_day_selector_frame
|
|
2941
|
+
id mtrl_calendar_days_of_week
|
|
2942
|
+
id mtrl_calendar_frame
|
|
2943
|
+
id mtrl_calendar_main_pane
|
|
2944
|
+
id mtrl_calendar_months
|
|
2945
|
+
id mtrl_calendar_selection_frame
|
|
2946
|
+
id mtrl_calendar_text_input_frame
|
|
2947
|
+
id mtrl_calendar_year_selector_frame
|
|
2948
|
+
id mtrl_card_checked_layer_id
|
|
2949
|
+
id mtrl_child_content_container
|
|
2950
|
+
id mtrl_internal_children_alpha_tag
|
|
2951
|
+
id mtrl_motion_snapshot_view
|
|
2952
|
+
id mtrl_picker_fullscreen
|
|
2953
|
+
id mtrl_picker_header
|
|
2954
|
+
id mtrl_picker_header_selection_text
|
|
2955
|
+
id mtrl_picker_header_title_and_selection
|
|
2956
|
+
id mtrl_picker_header_toggle
|
|
2957
|
+
id mtrl_picker_text_input_date
|
|
2958
|
+
id mtrl_picker_text_input_range_end
|
|
2959
|
+
id mtrl_picker_text_input_range_start
|
|
2960
|
+
id mtrl_picker_title_text
|
|
2961
|
+
id mtrl_view_tag_bottom_padding
|
|
1279
2962
|
id multiply
|
|
1280
2963
|
id name_layout
|
|
1281
2964
|
id name_textview
|
|
2965
|
+
id navigation_bar_item_active_indicator_view
|
|
2966
|
+
id navigation_bar_item_icon_container
|
|
2967
|
+
id navigation_bar_item_icon_view
|
|
2968
|
+
id navigation_bar_item_labels_group
|
|
2969
|
+
id navigation_bar_item_large_label_view
|
|
2970
|
+
id navigation_bar_item_small_label_view
|
|
2971
|
+
id navigation_header_container
|
|
1282
2972
|
id netmera_web_view
|
|
1283
2973
|
id netmera_web_view_container
|
|
1284
2974
|
id netmera_web_view_toolbar_cancel
|
|
@@ -1293,14 +2983,20 @@ id notification_main_column
|
|
|
1293
2983
|
id notification_main_column_container
|
|
1294
2984
|
id off
|
|
1295
2985
|
id on
|
|
2986
|
+
id outline
|
|
2987
|
+
id outward
|
|
1296
2988
|
id overshoot
|
|
1297
2989
|
id packed
|
|
2990
|
+
id parallax
|
|
1298
2991
|
id parent
|
|
1299
2992
|
id parentPanel
|
|
1300
2993
|
id parentRelative
|
|
2994
|
+
id parent_matrix
|
|
2995
|
+
id password_toggle
|
|
1301
2996
|
id path
|
|
1302
2997
|
id pathRelative
|
|
1303
2998
|
id percent
|
|
2999
|
+
id pin
|
|
1304
3000
|
id position
|
|
1305
3001
|
id postLayout
|
|
1306
3002
|
id progress_circular
|
|
@@ -1310,6 +3006,7 @@ id react_test_id
|
|
|
1310
3006
|
id rectangles
|
|
1311
3007
|
id reverseSawtooth
|
|
1312
3008
|
id right
|
|
3009
|
+
id rightToLeft
|
|
1313
3010
|
id right_icon
|
|
1314
3011
|
id right_side
|
|
1315
3012
|
id rlBuy
|
|
@@ -1322,12 +3019,18 @@ id rn_redbox_reload_button
|
|
|
1322
3019
|
id rn_redbox_report_button
|
|
1323
3020
|
id rn_redbox_report_label
|
|
1324
3021
|
id rn_redbox_stack
|
|
3022
|
+
id rounded
|
|
3023
|
+
id row_index_key
|
|
3024
|
+
id save_non_transition_alpha
|
|
3025
|
+
id save_overlay_view
|
|
1325
3026
|
id sawtooth
|
|
3027
|
+
id scale
|
|
1326
3028
|
id screen
|
|
1327
3029
|
id scrollIndicatorDown
|
|
1328
3030
|
id scrollIndicatorUp
|
|
1329
3031
|
id scrollView
|
|
1330
3032
|
id scroll_layout
|
|
3033
|
+
id scrollable
|
|
1331
3034
|
id search_badge
|
|
1332
3035
|
id search_bar
|
|
1333
3036
|
id search_button
|
|
@@ -1339,12 +3042,17 @@ id search_plate
|
|
|
1339
3042
|
id search_src_text
|
|
1340
3043
|
id search_voice_btn
|
|
1341
3044
|
id select_dialog_listview
|
|
3045
|
+
id selected
|
|
3046
|
+
id selection_type
|
|
1342
3047
|
id sharedValueSet
|
|
1343
3048
|
id sharedValueUnset
|
|
1344
3049
|
id shortcut
|
|
1345
3050
|
id sin
|
|
1346
3051
|
id size_layout
|
|
1347
3052
|
id skipped
|
|
3053
|
+
id slide
|
|
3054
|
+
id snackbar_action
|
|
3055
|
+
id snackbar_text
|
|
1348
3056
|
id south
|
|
1349
3057
|
id spacer
|
|
1350
3058
|
id special_effects_controller_view_tag
|
|
@@ -1360,11 +3068,13 @@ id src_over
|
|
|
1360
3068
|
id standard
|
|
1361
3069
|
id start
|
|
1362
3070
|
id startHorizontal
|
|
3071
|
+
id startToEnd
|
|
1363
3072
|
id startVertical
|
|
1364
3073
|
id staticLayout
|
|
1365
3074
|
id staticPostLayout
|
|
1366
3075
|
id status_bar_latest_event_content
|
|
1367
3076
|
id stop
|
|
3077
|
+
id stretch
|
|
1368
3078
|
id submenuarrow
|
|
1369
3079
|
id submit_area
|
|
1370
3080
|
id tabMode
|
|
@@ -1381,10 +3091,23 @@ id tag_transition_group
|
|
|
1381
3091
|
id tag_unhandled_key_event_manager
|
|
1382
3092
|
id tag_unhandled_key_listeners
|
|
1383
3093
|
id tag_window_insets_animation_callback
|
|
3094
|
+
id test_checkbox_android_button_tint
|
|
3095
|
+
id test_checkbox_app_button_tint
|
|
3096
|
+
id test_radiobutton_android_button_tint
|
|
3097
|
+
id test_radiobutton_app_button_tint
|
|
1384
3098
|
id text
|
|
1385
3099
|
id text2
|
|
1386
3100
|
id textSpacerNoButtons
|
|
1387
3101
|
id textSpacerNoTitle
|
|
3102
|
+
id text_input_end_icon
|
|
3103
|
+
id text_input_error_icon
|
|
3104
|
+
id text_input_start_icon
|
|
3105
|
+
id textinput_counter
|
|
3106
|
+
id textinput_error
|
|
3107
|
+
id textinput_helper_text
|
|
3108
|
+
id textinput_placeholder
|
|
3109
|
+
id textinput_prefix_text
|
|
3110
|
+
id textinput_suffix_text
|
|
1388
3111
|
id third_app_dl_progress_text
|
|
1389
3112
|
id third_app_dl_progressbar
|
|
1390
3113
|
id third_app_warn_text
|
|
@@ -1394,6 +3117,12 @@ id titleDividerNoCustom
|
|
|
1394
3117
|
id title_template
|
|
1395
3118
|
id top
|
|
1396
3119
|
id topPanel
|
|
3120
|
+
id touch_outside
|
|
3121
|
+
id transition_current_scene
|
|
3122
|
+
id transition_layout_save
|
|
3123
|
+
id transition_position
|
|
3124
|
+
id transition_scene_layoutid_cache
|
|
3125
|
+
id transition_transform
|
|
1397
3126
|
id triangle
|
|
1398
3127
|
id tvBanner
|
|
1399
3128
|
id tvBuy
|
|
@@ -1405,10 +3134,12 @@ id tvTitleCurrent
|
|
|
1405
3134
|
id tvTitleNext
|
|
1406
3135
|
id unchecked
|
|
1407
3136
|
id uniform
|
|
3137
|
+
id unlabeled
|
|
1408
3138
|
id up
|
|
1409
3139
|
id version_layout
|
|
1410
3140
|
id version_textview
|
|
1411
3141
|
id vertical_only
|
|
3142
|
+
id view_offset_helper
|
|
1412
3143
|
id view_tag_instance_handle
|
|
1413
3144
|
id view_tag_native_id
|
|
1414
3145
|
id view_transition
|
|
@@ -1419,22 +3150,65 @@ id visible
|
|
|
1419
3150
|
id visible_removing_fragment_view_tag
|
|
1420
3151
|
id west
|
|
1421
3152
|
id wide
|
|
3153
|
+
id withinBounds
|
|
1422
3154
|
id word
|
|
1423
3155
|
id wrap
|
|
1424
3156
|
id wrap_content
|
|
1425
3157
|
id wrap_content_constrained
|
|
1426
3158
|
id x_left
|
|
1427
3159
|
id x_right
|
|
3160
|
+
id zero_corner_chip
|
|
1428
3161
|
integer abc_config_activityDefaultDur
|
|
1429
3162
|
integer abc_config_activityShortDur
|
|
3163
|
+
integer app_bar_elevation_anim_duration
|
|
3164
|
+
integer bottom_sheet_slide_duration
|
|
1430
3165
|
integer cancel_button_image_alpha
|
|
1431
3166
|
integer config_tooltipAnimTime
|
|
3167
|
+
integer design_snackbar_text_max_lines
|
|
3168
|
+
integer design_tab_indicator_anim_duration_ms
|
|
1432
3169
|
integer google_play_services_version
|
|
3170
|
+
integer hide_password_duration
|
|
3171
|
+
integer m3_btn_anim_delay_ms
|
|
3172
|
+
integer m3_btn_anim_duration_ms
|
|
3173
|
+
integer m3_card_anim_delay_ms
|
|
3174
|
+
integer m3_card_anim_duration_ms
|
|
3175
|
+
integer m3_chip_anim_duration
|
|
3176
|
+
integer m3_sys_motion_duration_long1
|
|
3177
|
+
integer m3_sys_motion_duration_long2
|
|
3178
|
+
integer m3_sys_motion_duration_medium1
|
|
3179
|
+
integer m3_sys_motion_duration_medium2
|
|
3180
|
+
integer m3_sys_motion_duration_short1
|
|
3181
|
+
integer m3_sys_motion_duration_short2
|
|
3182
|
+
integer m3_sys_motion_path
|
|
3183
|
+
integer m3_sys_shape_large_corner_family
|
|
3184
|
+
integer m3_sys_shape_medium_corner_family
|
|
3185
|
+
integer m3_sys_shape_small_corner_family
|
|
3186
|
+
integer material_motion_duration_long_1
|
|
3187
|
+
integer material_motion_duration_long_2
|
|
3188
|
+
integer material_motion_duration_medium_1
|
|
3189
|
+
integer material_motion_duration_medium_2
|
|
3190
|
+
integer material_motion_duration_short_1
|
|
3191
|
+
integer material_motion_duration_short_2
|
|
3192
|
+
integer material_motion_path
|
|
3193
|
+
integer mtrl_badge_max_character_count
|
|
3194
|
+
integer mtrl_btn_anim_delay_ms
|
|
3195
|
+
integer mtrl_btn_anim_duration_ms
|
|
3196
|
+
integer mtrl_calendar_header_orientation
|
|
3197
|
+
integer mtrl_calendar_selection_text_lines
|
|
3198
|
+
integer mtrl_calendar_year_selector_span
|
|
3199
|
+
integer mtrl_card_anim_delay_ms
|
|
3200
|
+
integer mtrl_card_anim_duration_ms
|
|
3201
|
+
integer mtrl_chip_anim_duration
|
|
3202
|
+
integer mtrl_tab_indicator_anim_duration_ms
|
|
3203
|
+
integer mtrl_view_gone
|
|
3204
|
+
integer mtrl_view_invisible
|
|
3205
|
+
integer mtrl_view_visible
|
|
1433
3206
|
integer netmera_default_vertical_height
|
|
1434
3207
|
integer netmera_default_vertical_weight
|
|
1435
3208
|
integer netmera_default_vertical_width
|
|
1436
3209
|
integer react_native_dev_server_port
|
|
1437
3210
|
integer react_native_inspector_proxy_port
|
|
3211
|
+
integer show_password_duration
|
|
1438
3212
|
integer status_bar_notification_info_maxnum
|
|
1439
3213
|
interpolator btn_checkbox_checked_mtrl_animation_interpolator_0
|
|
1440
3214
|
interpolator btn_checkbox_checked_mtrl_animation_interpolator_1
|
|
@@ -1443,6 +3217,10 @@ interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1
|
|
|
1443
3217
|
interpolator btn_radio_to_off_mtrl_animation_interpolator_0
|
|
1444
3218
|
interpolator btn_radio_to_on_mtrl_animation_interpolator_0
|
|
1445
3219
|
interpolator fast_out_slow_in
|
|
3220
|
+
interpolator mtrl_fast_out_linear_in
|
|
3221
|
+
interpolator mtrl_fast_out_slow_in
|
|
3222
|
+
interpolator mtrl_linear
|
|
3223
|
+
interpolator mtrl_linear_out_slow_in
|
|
1446
3224
|
layout abc_action_bar_title_item
|
|
1447
3225
|
layout abc_action_bar_up_container
|
|
1448
3226
|
layout abc_action_menu_item_layout
|
|
@@ -1473,9 +3251,71 @@ layout abc_select_dialog_material
|
|
|
1473
3251
|
layout abc_tooltip
|
|
1474
3252
|
layout activity_endisable_service
|
|
1475
3253
|
layout custom_dialog
|
|
3254
|
+
layout design_bottom_navigation_item
|
|
3255
|
+
layout design_bottom_sheet_dialog
|
|
3256
|
+
layout design_layout_snackbar
|
|
3257
|
+
layout design_layout_snackbar_include
|
|
3258
|
+
layout design_layout_tab_icon
|
|
3259
|
+
layout design_layout_tab_text
|
|
3260
|
+
layout design_menu_item_action_area
|
|
3261
|
+
layout design_navigation_item
|
|
3262
|
+
layout design_navigation_item_header
|
|
3263
|
+
layout design_navigation_item_separator
|
|
3264
|
+
layout design_navigation_item_subheader
|
|
3265
|
+
layout design_navigation_menu
|
|
3266
|
+
layout design_navigation_menu_item
|
|
3267
|
+
layout design_text_input_end_icon
|
|
3268
|
+
layout design_text_input_start_icon
|
|
1476
3269
|
layout dev_loading_view
|
|
1477
3270
|
layout fps_view
|
|
1478
3271
|
layout hms_download_progress
|
|
3272
|
+
layout hwpush_trans_activity
|
|
3273
|
+
layout m3_alert_dialog
|
|
3274
|
+
layout m3_alert_dialog_actions
|
|
3275
|
+
layout m3_alert_dialog_title
|
|
3276
|
+
layout material_chip_input_combo
|
|
3277
|
+
layout material_clock_display
|
|
3278
|
+
layout material_clock_display_divider
|
|
3279
|
+
layout material_clock_period_toggle
|
|
3280
|
+
layout material_clock_period_toggle_land
|
|
3281
|
+
layout material_clockface_textview
|
|
3282
|
+
layout material_clockface_view
|
|
3283
|
+
layout material_radial_view_group
|
|
3284
|
+
layout material_textinput_timepicker
|
|
3285
|
+
layout material_time_chip
|
|
3286
|
+
layout material_time_input
|
|
3287
|
+
layout material_timepicker
|
|
3288
|
+
layout material_timepicker_dialog
|
|
3289
|
+
layout material_timepicker_textinput_display
|
|
3290
|
+
layout mtrl_alert_dialog
|
|
3291
|
+
layout mtrl_alert_dialog_actions
|
|
3292
|
+
layout mtrl_alert_dialog_title
|
|
3293
|
+
layout mtrl_alert_select_dialog_item
|
|
3294
|
+
layout mtrl_alert_select_dialog_multichoice
|
|
3295
|
+
layout mtrl_alert_select_dialog_singlechoice
|
|
3296
|
+
layout mtrl_calendar_day
|
|
3297
|
+
layout mtrl_calendar_day_of_week
|
|
3298
|
+
layout mtrl_calendar_days_of_week
|
|
3299
|
+
layout mtrl_calendar_horizontal
|
|
3300
|
+
layout mtrl_calendar_month
|
|
3301
|
+
layout mtrl_calendar_month_labeled
|
|
3302
|
+
layout mtrl_calendar_month_navigation
|
|
3303
|
+
layout mtrl_calendar_months
|
|
3304
|
+
layout mtrl_calendar_vertical
|
|
3305
|
+
layout mtrl_calendar_year
|
|
3306
|
+
layout mtrl_layout_snackbar
|
|
3307
|
+
layout mtrl_layout_snackbar_include
|
|
3308
|
+
layout mtrl_navigation_rail_item
|
|
3309
|
+
layout mtrl_picker_actions
|
|
3310
|
+
layout mtrl_picker_dialog
|
|
3311
|
+
layout mtrl_picker_fullscreen
|
|
3312
|
+
layout mtrl_picker_header_dialog
|
|
3313
|
+
layout mtrl_picker_header_fullscreen
|
|
3314
|
+
layout mtrl_picker_header_selection_text
|
|
3315
|
+
layout mtrl_picker_header_title_text
|
|
3316
|
+
layout mtrl_picker_header_toggle
|
|
3317
|
+
layout mtrl_picker_text_input_date
|
|
3318
|
+
layout mtrl_picker_text_input_date_range
|
|
1479
3319
|
layout netmera_banner_notification_item
|
|
1480
3320
|
layout netmera_carousel_notification_item
|
|
1481
3321
|
layout netmera_carousel_notification_template_base
|
|
@@ -1513,8 +3353,28 @@ layout select_dialog_item_material
|
|
|
1513
3353
|
layout select_dialog_multichoice_material
|
|
1514
3354
|
layout select_dialog_singlechoice_material
|
|
1515
3355
|
layout support_simple_spinner_dropdown_item
|
|
3356
|
+
layout test_action_chip
|
|
3357
|
+
layout test_chip_zero_corner_radius
|
|
3358
|
+
layout test_design_checkbox
|
|
3359
|
+
layout test_design_radiobutton
|
|
3360
|
+
layout test_navigation_bar_item_layout
|
|
3361
|
+
layout test_reflow_chipgroup
|
|
3362
|
+
layout test_toolbar
|
|
3363
|
+
layout test_toolbar_custom_background
|
|
3364
|
+
layout test_toolbar_elevation
|
|
3365
|
+
layout test_toolbar_surface
|
|
3366
|
+
layout text_view_with_line_height_from_appearance
|
|
3367
|
+
layout text_view_with_line_height_from_layout
|
|
3368
|
+
layout text_view_with_line_height_from_style
|
|
3369
|
+
layout text_view_with_theme_line_height
|
|
3370
|
+
layout text_view_without_line_height
|
|
1516
3371
|
layout upsdk_app_dl_progress_dialog
|
|
1517
3372
|
layout upsdk_ota_update_view
|
|
3373
|
+
menu example_menu
|
|
3374
|
+
menu example_menu2
|
|
3375
|
+
plurals mtrl_badge_content_description
|
|
3376
|
+
raw gcm_bip
|
|
3377
|
+
raw keep
|
|
1518
3378
|
string abc_action_bar_home_description
|
|
1519
3379
|
string abc_action_bar_up_description
|
|
1520
3380
|
string abc_action_menu_overflow_description
|
|
@@ -1554,9 +3414,14 @@ string abc_searchview_description_voice
|
|
|
1554
3414
|
string abc_shareactionprovider_share_with
|
|
1555
3415
|
string abc_shareactionprovider_share_with_application
|
|
1556
3416
|
string abc_toolbar_collapse_description
|
|
3417
|
+
string ag_sdk_cbg_root
|
|
3418
|
+
string aimodule_exclude_domain
|
|
1557
3419
|
string alert_description
|
|
1558
3420
|
string androidx_startup
|
|
1559
3421
|
string app_name
|
|
3422
|
+
string appbar_scrolling_view_behavior
|
|
3423
|
+
string bottom_sheet_behavior
|
|
3424
|
+
string bottomsheet_action_expand_halfway
|
|
1560
3425
|
string button_description
|
|
1561
3426
|
string catalyst_change_bundle_location
|
|
1562
3427
|
string catalyst_copy_button
|
|
@@ -1587,6 +3452,11 @@ string catalyst_sample_profiler_disable
|
|
|
1587
3452
|
string catalyst_sample_profiler_enable
|
|
1588
3453
|
string catalyst_settings
|
|
1589
3454
|
string catalyst_settings_title
|
|
3455
|
+
string character_counter_content_description
|
|
3456
|
+
string character_counter_overflowed_content_description
|
|
3457
|
+
string character_counter_pattern
|
|
3458
|
+
string chip_text
|
|
3459
|
+
string clear_text_end_icon_content_description
|
|
1590
3460
|
string combobox_description
|
|
1591
3461
|
string common_google_play_services_enable_button
|
|
1592
3462
|
string common_google_play_services_enable_text
|
|
@@ -1606,13 +3476,22 @@ string common_google_play_services_wear_update_text
|
|
|
1606
3476
|
string common_open_on_phone
|
|
1607
3477
|
string common_signin_button_text
|
|
1608
3478
|
string common_signin_button_text_long
|
|
3479
|
+
string error_icon_content_description
|
|
3480
|
+
string exposed_dropdown_menu_content_description
|
|
3481
|
+
string fab_transformation_scrim_behavior
|
|
3482
|
+
string fab_transformation_sheet_behavior
|
|
3483
|
+
string fcm_2_args
|
|
1609
3484
|
string fcm_fallback_notification_channel_label
|
|
3485
|
+
string fcm_no_args
|
|
1610
3486
|
string header_description
|
|
3487
|
+
string hide_bottom_view_on_scroll_behavior
|
|
1611
3488
|
string hms_abort
|
|
1612
3489
|
string hms_abort_message
|
|
1613
3490
|
string hms_bindfaildlg_message
|
|
1614
3491
|
string hms_bindfaildlg_title
|
|
1615
3492
|
string hms_cancel
|
|
3493
|
+
string hms_cancel_after_cancel
|
|
3494
|
+
string hms_cancel_install_message
|
|
1616
3495
|
string hms_check_failure
|
|
1617
3496
|
string hms_checking
|
|
1618
3497
|
string hms_confirm
|
|
@@ -1621,6 +3500,7 @@ string hms_download_no_space
|
|
|
1621
3500
|
string hms_download_retry
|
|
1622
3501
|
string hms_downloading_loading
|
|
1623
3502
|
string hms_install
|
|
3503
|
+
string hms_install_after_cancel
|
|
1624
3504
|
string hms_install_message
|
|
1625
3505
|
string hms_is_spoof
|
|
1626
3506
|
string hms_push_channel
|
|
@@ -1634,16 +3514,113 @@ string hms_update_message
|
|
|
1634
3514
|
string hms_update_message_new
|
|
1635
3515
|
string hms_update_nettype
|
|
1636
3516
|
string hms_update_title
|
|
3517
|
+
string icon_content_description
|
|
1637
3518
|
string image_description
|
|
1638
3519
|
string imagebutton_description
|
|
3520
|
+
string item_view_role_description
|
|
1639
3521
|
string link_description
|
|
3522
|
+
string m3_ref_typeface_brand_display_regular
|
|
3523
|
+
string m3_ref_typeface_brand_medium
|
|
3524
|
+
string m3_ref_typeface_brand_regular
|
|
3525
|
+
string m3_ref_typeface_plain_medium
|
|
3526
|
+
string m3_ref_typeface_plain_regular
|
|
3527
|
+
string m3_sys_motion_easing_accelerated
|
|
3528
|
+
string m3_sys_motion_easing_decelerated
|
|
3529
|
+
string m3_sys_motion_easing_emphasized
|
|
3530
|
+
string m3_sys_motion_easing_linear
|
|
3531
|
+
string m3_sys_motion_easing_standard
|
|
3532
|
+
string m3_sys_typescale_body_large_font
|
|
3533
|
+
string m3_sys_typescale_body_medium_font
|
|
3534
|
+
string m3_sys_typescale_body_small_font
|
|
3535
|
+
string m3_sys_typescale_display_large_font
|
|
3536
|
+
string m3_sys_typescale_display_medium_font
|
|
3537
|
+
string m3_sys_typescale_display_small_font
|
|
3538
|
+
string m3_sys_typescale_headline_large_font
|
|
3539
|
+
string m3_sys_typescale_headline_medium_font
|
|
3540
|
+
string m3_sys_typescale_headline_small_font
|
|
3541
|
+
string m3_sys_typescale_label_large_font
|
|
3542
|
+
string m3_sys_typescale_label_medium_font
|
|
3543
|
+
string m3_sys_typescale_label_small_font
|
|
3544
|
+
string m3_sys_typescale_title_large_font
|
|
3545
|
+
string m3_sys_typescale_title_medium_font
|
|
3546
|
+
string m3_sys_typescale_title_small_font
|
|
3547
|
+
string material_clock_display_divider
|
|
3548
|
+
string material_clock_toggle_content_description
|
|
3549
|
+
string material_hour_selection
|
|
3550
|
+
string material_hour_suffix
|
|
3551
|
+
string material_minute_selection
|
|
3552
|
+
string material_minute_suffix
|
|
3553
|
+
string material_motion_easing_accelerated
|
|
3554
|
+
string material_motion_easing_decelerated
|
|
3555
|
+
string material_motion_easing_emphasized
|
|
3556
|
+
string material_motion_easing_linear
|
|
3557
|
+
string material_motion_easing_standard
|
|
3558
|
+
string material_slider_range_end
|
|
3559
|
+
string material_slider_range_start
|
|
3560
|
+
string material_timepicker_am
|
|
3561
|
+
string material_timepicker_clock_mode_description
|
|
3562
|
+
string material_timepicker_hour
|
|
3563
|
+
string material_timepicker_minute
|
|
3564
|
+
string material_timepicker_pm
|
|
3565
|
+
string material_timepicker_select_time
|
|
3566
|
+
string material_timepicker_text_input_mode_description
|
|
1640
3567
|
string menu_description
|
|
1641
3568
|
string menubar_description
|
|
1642
3569
|
string menuitem_description
|
|
3570
|
+
string mtrl_badge_numberless_content_description
|
|
3571
|
+
string mtrl_chip_close_icon_content_description
|
|
3572
|
+
string mtrl_exceed_max_badge_number_content_description
|
|
3573
|
+
string mtrl_exceed_max_badge_number_suffix
|
|
3574
|
+
string mtrl_picker_a11y_next_month
|
|
3575
|
+
string mtrl_picker_a11y_prev_month
|
|
3576
|
+
string mtrl_picker_announce_current_selection
|
|
3577
|
+
string mtrl_picker_cancel
|
|
3578
|
+
string mtrl_picker_confirm
|
|
3579
|
+
string mtrl_picker_date_header_selected
|
|
3580
|
+
string mtrl_picker_date_header_title
|
|
3581
|
+
string mtrl_picker_date_header_unselected
|
|
3582
|
+
string mtrl_picker_day_of_week_column_header
|
|
3583
|
+
string mtrl_picker_invalid_format
|
|
3584
|
+
string mtrl_picker_invalid_format_example
|
|
3585
|
+
string mtrl_picker_invalid_format_use
|
|
3586
|
+
string mtrl_picker_invalid_range
|
|
3587
|
+
string mtrl_picker_navigate_to_year_description
|
|
3588
|
+
string mtrl_picker_out_of_range
|
|
3589
|
+
string mtrl_picker_range_header_only_end_selected
|
|
3590
|
+
string mtrl_picker_range_header_only_start_selected
|
|
3591
|
+
string mtrl_picker_range_header_selected
|
|
3592
|
+
string mtrl_picker_range_header_title
|
|
3593
|
+
string mtrl_picker_range_header_unselected
|
|
3594
|
+
string mtrl_picker_save
|
|
3595
|
+
string mtrl_picker_text_input_date_hint
|
|
3596
|
+
string mtrl_picker_text_input_date_range_end_hint
|
|
3597
|
+
string mtrl_picker_text_input_date_range_start_hint
|
|
3598
|
+
string mtrl_picker_text_input_day_abbr
|
|
3599
|
+
string mtrl_picker_text_input_month_abbr
|
|
3600
|
+
string mtrl_picker_text_input_year_abbr
|
|
3601
|
+
string mtrl_picker_toggle_to_calendar_input_mode
|
|
3602
|
+
string mtrl_picker_toggle_to_day_selection
|
|
3603
|
+
string mtrl_picker_toggle_to_text_input_mode
|
|
3604
|
+
string mtrl_picker_toggle_to_year_selection
|
|
3605
|
+
string mtrl_timepicker_confirm
|
|
1643
3606
|
string netmera_geo_not_available
|
|
1644
3607
|
string netmera_geo_too_many_geofences
|
|
1645
3608
|
string netmera_geo_too_many_pending_intents
|
|
1646
3609
|
string netmera_geo_unknown_error
|
|
3610
|
+
string networkkit_httpdns_domain
|
|
3611
|
+
string nmfcm_geo_not_available
|
|
3612
|
+
string nmfcm_geo_too_many_geofences
|
|
3613
|
+
string nmfcm_geo_too_many_pending_intents
|
|
3614
|
+
string nmfcm_geo_unknown_error
|
|
3615
|
+
string nmhms_geo_not_available
|
|
3616
|
+
string nmhms_geo_too_many_geofences
|
|
3617
|
+
string nmhms_geo_too_many_pending_intents
|
|
3618
|
+
string nmhms_geo_unknown_error
|
|
3619
|
+
string password_toggle_content_description
|
|
3620
|
+
string path_password_eye
|
|
3621
|
+
string path_password_eye_mask_strike_through
|
|
3622
|
+
string path_password_eye_mask_visible
|
|
3623
|
+
string path_password_strike_through
|
|
1647
3624
|
string progressbar_description
|
|
1648
3625
|
string push_cat_body
|
|
1649
3626
|
string push_cat_head
|
|
@@ -1652,6 +3629,9 @@ string rn_tab_description
|
|
|
1652
3629
|
string scrollbar_description
|
|
1653
3630
|
string search_description
|
|
1654
3631
|
string search_menu_title
|
|
3632
|
+
string spec_ip_0
|
|
3633
|
+
string spec_ip_1
|
|
3634
|
+
string spec_ip_2
|
|
1655
3635
|
string spinbutton_description
|
|
1656
3636
|
string state_busy_description
|
|
1657
3637
|
string state_collapsed_description
|
|
@@ -1670,7 +3650,6 @@ string upsdk_app_download_installing
|
|
|
1670
3650
|
string upsdk_app_size
|
|
1671
3651
|
string upsdk_app_version
|
|
1672
3652
|
string upsdk_appstore_install
|
|
1673
|
-
string upsdk_apptouch_store_url
|
|
1674
3653
|
string upsdk_cancel
|
|
1675
3654
|
string upsdk_checking_update_prompt
|
|
1676
3655
|
string upsdk_choice_update
|
|
@@ -1691,18 +3670,25 @@ string upsdk_third_app_dl_sure_cancel_download
|
|
|
1691
3670
|
string upsdk_update_check_no_new_version
|
|
1692
3671
|
style AlertDialog_AppCompat
|
|
1693
3672
|
style AlertDialog_AppCompat_Light
|
|
3673
|
+
style AndroidThemeColorAccentYellow
|
|
1694
3674
|
style Animation_AppCompat_Dialog
|
|
1695
3675
|
style Animation_AppCompat_DropDownUp
|
|
1696
3676
|
style Animation_AppCompat_Tooltip
|
|
1697
3677
|
style Animation_Catalyst_LogBox
|
|
1698
3678
|
style Animation_Catalyst_RedBox
|
|
3679
|
+
style Animation_Design_BottomSheetDialog
|
|
3680
|
+
style Animation_MaterialComponents_BottomSheetDialog
|
|
1699
3681
|
style Base_AlertDialog_AppCompat
|
|
1700
3682
|
style Base_AlertDialog_AppCompat_Light
|
|
1701
3683
|
style Base_Animation_AppCompat_Dialog
|
|
1702
3684
|
style Base_Animation_AppCompat_DropDownUp
|
|
1703
3685
|
style Base_Animation_AppCompat_Tooltip
|
|
3686
|
+
style Base_CardView
|
|
1704
3687
|
style Base_DialogWindowTitleBackground_AppCompat
|
|
1705
3688
|
style Base_DialogWindowTitle_AppCompat
|
|
3689
|
+
style Base_MaterialAlertDialog_MaterialComponents_Title_Icon
|
|
3690
|
+
style Base_MaterialAlertDialog_MaterialComponents_Title_Panel
|
|
3691
|
+
style Base_MaterialAlertDialog_MaterialComponents_Title_Text
|
|
1706
3692
|
style Base_TextAppearance_AppCompat
|
|
1707
3693
|
style Base_TextAppearance_AppCompat_Body1
|
|
1708
3694
|
style Base_TextAppearance_AppCompat_Body2
|
|
@@ -1748,6 +3734,15 @@ style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large
|
|
|
1748
3734
|
style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small
|
|
1749
3735
|
style Base_TextAppearance_AppCompat_Widget_Switch
|
|
1750
3736
|
style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem
|
|
3737
|
+
style Base_TextAppearance_Material3_LabelLarge
|
|
3738
|
+
style Base_TextAppearance_Material3_LabelMedium
|
|
3739
|
+
style Base_TextAppearance_Material3_LabelSmall
|
|
3740
|
+
style Base_TextAppearance_Material3_TitleMedium
|
|
3741
|
+
style Base_TextAppearance_Material3_TitleSmall
|
|
3742
|
+
style Base_TextAppearance_MaterialComponents_Badge
|
|
3743
|
+
style Base_TextAppearance_MaterialComponents_Button
|
|
3744
|
+
style Base_TextAppearance_MaterialComponents_Headline6
|
|
3745
|
+
style Base_TextAppearance_MaterialComponents_Subtitle2
|
|
1751
3746
|
style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item
|
|
1752
3747
|
style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle
|
|
1753
3748
|
style Base_TextAppearance_Widget_AppCompat_Toolbar_Title
|
|
@@ -1758,6 +3753,15 @@ style Base_ThemeOverlay_AppCompat_Dark_ActionBar
|
|
|
1758
3753
|
style Base_ThemeOverlay_AppCompat_Dialog
|
|
1759
3754
|
style Base_ThemeOverlay_AppCompat_Dialog_Alert
|
|
1760
3755
|
style Base_ThemeOverlay_AppCompat_Light
|
|
3756
|
+
style Base_ThemeOverlay_Material3_AutoCompleteTextView
|
|
3757
|
+
style Base_ThemeOverlay_Material3_BottomSheetDialog
|
|
3758
|
+
style Base_ThemeOverlay_Material3_Dialog
|
|
3759
|
+
style Base_ThemeOverlay_Material3_TextInputEditText
|
|
3760
|
+
style Base_ThemeOverlay_MaterialComponents_Dialog
|
|
3761
|
+
style Base_ThemeOverlay_MaterialComponents_Dialog_Alert
|
|
3762
|
+
style Base_ThemeOverlay_MaterialComponents_Dialog_Alert_Framework
|
|
3763
|
+
style Base_ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework
|
|
3764
|
+
style Base_ThemeOverlay_MaterialComponents_MaterialAlertDialog
|
|
1761
3765
|
style Base_Theme_AppCompat
|
|
1762
3766
|
style Base_Theme_AppCompat_CompactMenu
|
|
1763
3767
|
style Base_Theme_AppCompat_Dialog
|
|
@@ -1772,16 +3776,71 @@ style Base_Theme_AppCompat_Light_DialogWhenLarge
|
|
|
1772
3776
|
style Base_Theme_AppCompat_Light_Dialog_Alert
|
|
1773
3777
|
style Base_Theme_AppCompat_Light_Dialog_FixedSize
|
|
1774
3778
|
style Base_Theme_AppCompat_Light_Dialog_MinWidth
|
|
3779
|
+
style Base_Theme_Material3_Dark
|
|
3780
|
+
style Base_Theme_Material3_Dark_BottomSheetDialog
|
|
3781
|
+
style Base_Theme_Material3_Dark_Dialog
|
|
3782
|
+
style Base_Theme_Material3_Light
|
|
3783
|
+
style Base_Theme_Material3_Light_BottomSheetDialog
|
|
3784
|
+
style Base_Theme_Material3_Light_Dialog
|
|
3785
|
+
style Base_Theme_MaterialComponents
|
|
3786
|
+
style Base_Theme_MaterialComponents_Bridge
|
|
3787
|
+
style Base_Theme_MaterialComponents_CompactMenu
|
|
3788
|
+
style Base_Theme_MaterialComponents_Dialog
|
|
3789
|
+
style Base_Theme_MaterialComponents_DialogWhenLarge
|
|
3790
|
+
style Base_Theme_MaterialComponents_Dialog_Alert
|
|
3791
|
+
style Base_Theme_MaterialComponents_Dialog_Bridge
|
|
3792
|
+
style Base_Theme_MaterialComponents_Dialog_FixedSize
|
|
3793
|
+
style Base_Theme_MaterialComponents_Dialog_MinWidth
|
|
3794
|
+
style Base_Theme_MaterialComponents_Light
|
|
3795
|
+
style Base_Theme_MaterialComponents_Light_Bridge
|
|
3796
|
+
style Base_Theme_MaterialComponents_Light_DarkActionBar
|
|
3797
|
+
style Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge
|
|
3798
|
+
style Base_Theme_MaterialComponents_Light_Dialog
|
|
3799
|
+
style Base_Theme_MaterialComponents_Light_DialogWhenLarge
|
|
3800
|
+
style Base_Theme_MaterialComponents_Light_Dialog_Alert
|
|
3801
|
+
style Base_Theme_MaterialComponents_Light_Dialog_Bridge
|
|
3802
|
+
style Base_Theme_MaterialComponents_Light_Dialog_FixedSize
|
|
3803
|
+
style Base_Theme_MaterialComponents_Light_Dialog_MinWidth
|
|
1775
3804
|
style Base_Translucent
|
|
3805
|
+
style Base_V14_ThemeOverlay_Material3_BottomSheetDialog
|
|
3806
|
+
style Base_V14_ThemeOverlay_MaterialComponents_BottomSheetDialog
|
|
3807
|
+
style Base_V14_ThemeOverlay_MaterialComponents_Dialog
|
|
3808
|
+
style Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert
|
|
3809
|
+
style Base_V14_ThemeOverlay_MaterialComponents_MaterialAlertDialog
|
|
3810
|
+
style Base_V14_Theme_Material3_Dark
|
|
3811
|
+
style Base_V14_Theme_Material3_Dark_BottomSheetDialog
|
|
3812
|
+
style Base_V14_Theme_Material3_Dark_Dialog
|
|
3813
|
+
style Base_V14_Theme_Material3_Light
|
|
3814
|
+
style Base_V14_Theme_Material3_Light_BottomSheetDialog
|
|
3815
|
+
style Base_V14_Theme_Material3_Light_Dialog
|
|
3816
|
+
style Base_V14_Theme_MaterialComponents
|
|
3817
|
+
style Base_V14_Theme_MaterialComponents_Bridge
|
|
3818
|
+
style Base_V14_Theme_MaterialComponents_Dialog
|
|
3819
|
+
style Base_V14_Theme_MaterialComponents_Dialog_Bridge
|
|
3820
|
+
style Base_V14_Theme_MaterialComponents_Light
|
|
3821
|
+
style Base_V14_Theme_MaterialComponents_Light_Bridge
|
|
3822
|
+
style Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge
|
|
3823
|
+
style Base_V14_Theme_MaterialComponents_Light_Dialog
|
|
3824
|
+
style Base_V14_Theme_MaterialComponents_Light_Dialog_Bridge
|
|
1776
3825
|
style Base_V21_ThemeOverlay_AppCompat_Dialog
|
|
3826
|
+
style Base_V21_ThemeOverlay_Material3_BottomSheetDialog
|
|
3827
|
+
style Base_V21_ThemeOverlay_MaterialComponents_BottomSheetDialog
|
|
1777
3828
|
style Base_V21_Theme_AppCompat
|
|
1778
3829
|
style Base_V21_Theme_AppCompat_Dialog
|
|
1779
3830
|
style Base_V21_Theme_AppCompat_Light
|
|
1780
3831
|
style Base_V21_Theme_AppCompat_Light_Dialog
|
|
3832
|
+
style Base_V21_Theme_MaterialComponents
|
|
3833
|
+
style Base_V21_Theme_MaterialComponents_Dialog
|
|
3834
|
+
style Base_V21_Theme_MaterialComponents_Light
|
|
3835
|
+
style Base_V21_Theme_MaterialComponents_Light_Dialog
|
|
1781
3836
|
style Base_V22_Theme_AppCompat
|
|
1782
3837
|
style Base_V22_Theme_AppCompat_Light
|
|
1783
3838
|
style Base_V23_Theme_AppCompat
|
|
1784
3839
|
style Base_V23_Theme_AppCompat_Light
|
|
3840
|
+
style Base_V24_Theme_Material3_Dark
|
|
3841
|
+
style Base_V24_Theme_Material3_Dark_Dialog
|
|
3842
|
+
style Base_V24_Theme_Material3_Light
|
|
3843
|
+
style Base_V24_Theme_Material3_Light_Dialog
|
|
1785
3844
|
style Base_V26_Theme_AppCompat
|
|
1786
3845
|
style Base_V26_Theme_AppCompat_Light
|
|
1787
3846
|
style Base_V26_Widget_AppCompat_Toolbar
|
|
@@ -1853,18 +3912,78 @@ style Base_Widget_AppCompat_TextView
|
|
|
1853
3912
|
style Base_Widget_AppCompat_TextView_SpinnerItem
|
|
1854
3913
|
style Base_Widget_AppCompat_Toolbar
|
|
1855
3914
|
style Base_Widget_AppCompat_Toolbar_Button_Navigation
|
|
3915
|
+
style Base_Widget_Design_TabLayout
|
|
3916
|
+
style Base_Widget_Material3_ActionBar_Solid
|
|
3917
|
+
style Base_Widget_Material3_ActionMode
|
|
3918
|
+
style Base_Widget_Material3_CardView
|
|
3919
|
+
style Base_Widget_Material3_Chip
|
|
3920
|
+
style Base_Widget_Material3_CollapsingToolbar
|
|
3921
|
+
style Base_Widget_Material3_CompoundButton_CheckBox
|
|
3922
|
+
style Base_Widget_Material3_CompoundButton_RadioButton
|
|
3923
|
+
style Base_Widget_Material3_CompoundButton_Switch
|
|
3924
|
+
style Base_Widget_Material3_ExtendedFloatingActionButton
|
|
3925
|
+
style Base_Widget_Material3_ExtendedFloatingActionButton_Icon
|
|
3926
|
+
style Base_Widget_Material3_FloatingActionButton
|
|
3927
|
+
style Base_Widget_Material3_FloatingActionButton_Large
|
|
3928
|
+
style Base_Widget_Material3_Light_ActionBar_Solid
|
|
3929
|
+
style Base_Widget_Material3_MaterialCalendar_NavigationButton
|
|
3930
|
+
style Base_Widget_Material3_Snackbar
|
|
3931
|
+
style Base_Widget_Material3_TabLayout
|
|
3932
|
+
style Base_Widget_Material3_TabLayout_OnSurface
|
|
3933
|
+
style Base_Widget_Material3_TabLayout_Secondary
|
|
3934
|
+
style Base_Widget_MaterialComponents_AutoCompleteTextView
|
|
3935
|
+
style Base_Widget_MaterialComponents_CheckedTextView
|
|
3936
|
+
style Base_Widget_MaterialComponents_Chip
|
|
3937
|
+
style Base_Widget_MaterialComponents_MaterialCalendar_NavigationButton
|
|
3938
|
+
style Base_Widget_MaterialComponents_PopupMenu
|
|
3939
|
+
style Base_Widget_MaterialComponents_PopupMenu_ContextMenu
|
|
3940
|
+
style Base_Widget_MaterialComponents_PopupMenu_ListPopupWindow
|
|
3941
|
+
style Base_Widget_MaterialComponents_PopupMenu_Overflow
|
|
3942
|
+
style Base_Widget_MaterialComponents_Slider
|
|
3943
|
+
style Base_Widget_MaterialComponents_Snackbar
|
|
3944
|
+
style Base_Widget_MaterialComponents_TextInputEditText
|
|
3945
|
+
style Base_Widget_MaterialComponents_TextInputLayout
|
|
3946
|
+
style Base_Widget_MaterialComponents_TextView
|
|
1856
3947
|
style CalendarDatePickerDialog
|
|
1857
3948
|
style CalendarDatePickerStyle
|
|
3949
|
+
style CardView
|
|
3950
|
+
style CardView_Dark
|
|
3951
|
+
style CardView_Light
|
|
1858
3952
|
style DialogAnimationFade
|
|
1859
3953
|
style DialogAnimationSlide
|
|
3954
|
+
style EmptyTheme
|
|
3955
|
+
style MaterialAlertDialog_Material3
|
|
3956
|
+
style MaterialAlertDialog_Material3_Body_Text
|
|
3957
|
+
style MaterialAlertDialog_Material3_Body_Text_CenterStacked
|
|
3958
|
+
style MaterialAlertDialog_Material3_Title_Icon
|
|
3959
|
+
style MaterialAlertDialog_Material3_Title_Icon_CenterStacked
|
|
3960
|
+
style MaterialAlertDialog_Material3_Title_Panel
|
|
3961
|
+
style MaterialAlertDialog_Material3_Title_Panel_CenterStacked
|
|
3962
|
+
style MaterialAlertDialog_Material3_Title_Text
|
|
3963
|
+
style MaterialAlertDialog_Material3_Title_Text_CenterStacked
|
|
3964
|
+
style MaterialAlertDialog_MaterialComponents
|
|
3965
|
+
style MaterialAlertDialog_MaterialComponents_Body_Text
|
|
3966
|
+
style MaterialAlertDialog_MaterialComponents_Picker_Date_Calendar
|
|
3967
|
+
style MaterialAlertDialog_MaterialComponents_Picker_Date_Spinner
|
|
3968
|
+
style MaterialAlertDialog_MaterialComponents_Title_Icon
|
|
3969
|
+
style MaterialAlertDialog_MaterialComponents_Title_Icon_CenterStacked
|
|
3970
|
+
style MaterialAlertDialog_MaterialComponents_Title_Panel
|
|
3971
|
+
style MaterialAlertDialog_MaterialComponents_Title_Panel_CenterStacked
|
|
3972
|
+
style MaterialAlertDialog_MaterialComponents_Title_Text
|
|
3973
|
+
style MaterialAlertDialog_MaterialComponents_Title_Text_CenterStacked
|
|
1860
3974
|
style NetmeraInAppMessageStyle
|
|
1861
3975
|
style NetmeraPopupWindowAnimation
|
|
1862
3976
|
style NetmeraThemeAlertDialog
|
|
1863
3977
|
style Netmera_Theme_Transparent
|
|
1864
3978
|
style Netmera_Theme_Transparent_Dim
|
|
1865
3979
|
style Netmera_Theme_Transparent_Dim_Dialog
|
|
3980
|
+
style Netmera_Theme_Transparent_Webview
|
|
1866
3981
|
style Platform_AppCompat
|
|
1867
3982
|
style Platform_AppCompat_Light
|
|
3983
|
+
style Platform_MaterialComponents
|
|
3984
|
+
style Platform_MaterialComponents_Dialog
|
|
3985
|
+
style Platform_MaterialComponents_Light
|
|
3986
|
+
style Platform_MaterialComponents_Light_Dialog
|
|
1868
3987
|
style Platform_ThemeOverlay_AppCompat
|
|
1869
3988
|
style Platform_ThemeOverlay_AppCompat_Dark
|
|
1870
3989
|
style Platform_ThemeOverlay_AppCompat_Light
|
|
@@ -1890,8 +4009,51 @@ style RtlOverlay_Widget_AppCompat_Search_DropDown_Query
|
|
|
1890
4009
|
style RtlOverlay_Widget_AppCompat_Search_DropDown_Text
|
|
1891
4010
|
style RtlUnderlay_Widget_AppCompat_ActionButton
|
|
1892
4011
|
style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow
|
|
4012
|
+
style ShapeAppearanceOverlay
|
|
4013
|
+
style ShapeAppearanceOverlay_BottomLeftDifferentCornerSize
|
|
4014
|
+
style ShapeAppearanceOverlay_BottomRightCut
|
|
4015
|
+
style ShapeAppearanceOverlay_Cut
|
|
4016
|
+
style ShapeAppearanceOverlay_DifferentCornerSize
|
|
4017
|
+
style ShapeAppearanceOverlay_Material3_Button
|
|
4018
|
+
style ShapeAppearanceOverlay_Material3_Chip
|
|
4019
|
+
style ShapeAppearanceOverlay_Material3_FloatingActionButton
|
|
4020
|
+
style ShapeAppearanceOverlay_Material3_NavigationView_Item
|
|
4021
|
+
style ShapeAppearanceOverlay_Material3_TextField_Filled
|
|
4022
|
+
style ShapeAppearanceOverlay_MaterialAlertDialog_Material3
|
|
4023
|
+
style ShapeAppearanceOverlay_MaterialComponents_BottomSheet
|
|
4024
|
+
style ShapeAppearanceOverlay_MaterialComponents_Chip
|
|
4025
|
+
style ShapeAppearanceOverlay_MaterialComponents_ExtendedFloatingActionButton
|
|
4026
|
+
style ShapeAppearanceOverlay_MaterialComponents_FloatingActionButton
|
|
4027
|
+
style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day
|
|
4028
|
+
style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Window_Fullscreen
|
|
4029
|
+
style ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Year
|
|
4030
|
+
style ShapeAppearanceOverlay_MaterialComponents_TextInputLayout_FilledBox
|
|
4031
|
+
style ShapeAppearanceOverlay_TopLeftCut
|
|
4032
|
+
style ShapeAppearanceOverlay_TopRightDifferentCornerSize
|
|
4033
|
+
style ShapeAppearance_Material3_LargeComponent
|
|
4034
|
+
style ShapeAppearance_Material3_MediumComponent
|
|
4035
|
+
style ShapeAppearance_Material3_NavigationBarView_ActiveIndicator
|
|
4036
|
+
style ShapeAppearance_Material3_SmallComponent
|
|
4037
|
+
style ShapeAppearance_Material3_Tooltip
|
|
4038
|
+
style ShapeAppearance_MaterialComponents
|
|
4039
|
+
style ShapeAppearance_MaterialComponents_LargeComponent
|
|
4040
|
+
style ShapeAppearance_MaterialComponents_MediumComponent
|
|
4041
|
+
style ShapeAppearance_MaterialComponents_SmallComponent
|
|
4042
|
+
style ShapeAppearance_MaterialComponents_Test
|
|
4043
|
+
style ShapeAppearance_MaterialComponents_Tooltip
|
|
1893
4044
|
style SpinnerDatePickerDialog
|
|
1894
4045
|
style SpinnerDatePickerStyle
|
|
4046
|
+
style TestStyleWithLineHeight
|
|
4047
|
+
style TestStyleWithLineHeightAppearance
|
|
4048
|
+
style TestStyleWithThemeLineHeightAttribute
|
|
4049
|
+
style TestStyleWithoutLineHeight
|
|
4050
|
+
style TestThemeWithLineHeight
|
|
4051
|
+
style TestThemeWithLineHeightDisabled
|
|
4052
|
+
style Test_ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day
|
|
4053
|
+
style Test_Theme_MaterialComponents_MaterialCalendar
|
|
4054
|
+
style Test_Widget_MaterialComponents_MaterialCalendar
|
|
4055
|
+
style Test_Widget_MaterialComponents_MaterialCalendar_Day
|
|
4056
|
+
style Test_Widget_MaterialComponents_MaterialCalendar_Day_Selected
|
|
1895
4057
|
style TextAppearance_AppCompat
|
|
1896
4058
|
style TextAppearance_AppCompat_Body1
|
|
1897
4059
|
style TextAppearance_AppCompat_Body2
|
|
@@ -1950,10 +4112,57 @@ style TextAppearance_Compat_Notification_Time
|
|
|
1950
4112
|
style TextAppearance_Compat_Notification_Time_Media
|
|
1951
4113
|
style TextAppearance_Compat_Notification_Title
|
|
1952
4114
|
style TextAppearance_Compat_Notification_Title_Media
|
|
4115
|
+
style TextAppearance_Design_CollapsingToolbar_Expanded
|
|
4116
|
+
style TextAppearance_Design_Counter
|
|
4117
|
+
style TextAppearance_Design_Counter_Overflow
|
|
4118
|
+
style TextAppearance_Design_Error
|
|
4119
|
+
style TextAppearance_Design_HelperText
|
|
4120
|
+
style TextAppearance_Design_Hint
|
|
4121
|
+
style TextAppearance_Design_Placeholder
|
|
4122
|
+
style TextAppearance_Design_Prefix
|
|
4123
|
+
style TextAppearance_Design_Snackbar_Message
|
|
4124
|
+
style TextAppearance_Design_Suffix
|
|
4125
|
+
style TextAppearance_Design_Tab
|
|
4126
|
+
style TextAppearance_Material3_ActionBar_Subtitle
|
|
4127
|
+
style TextAppearance_Material3_ActionBar_Title
|
|
4128
|
+
style TextAppearance_Material3_BodyLarge
|
|
4129
|
+
style TextAppearance_Material3_BodyMedium
|
|
4130
|
+
style TextAppearance_Material3_BodySmall
|
|
4131
|
+
style TextAppearance_Material3_DisplayLarge
|
|
4132
|
+
style TextAppearance_Material3_DisplayMedium
|
|
4133
|
+
style TextAppearance_Material3_DisplaySmall
|
|
4134
|
+
style TextAppearance_Material3_HeadlineLarge
|
|
4135
|
+
style TextAppearance_Material3_HeadlineMedium
|
|
4136
|
+
style TextAppearance_Material3_HeadlineSmall
|
|
4137
|
+
style TextAppearance_Material3_LabelLarge
|
|
4138
|
+
style TextAppearance_Material3_LabelMedium
|
|
4139
|
+
style TextAppearance_Material3_LabelSmall
|
|
4140
|
+
style TextAppearance_Material3_MaterialTimePicker_Title
|
|
4141
|
+
style TextAppearance_Material3_TitleLarge
|
|
4142
|
+
style TextAppearance_Material3_TitleMedium
|
|
4143
|
+
style TextAppearance_Material3_TitleSmall
|
|
4144
|
+
style TextAppearance_MaterialComponents_Badge
|
|
4145
|
+
style TextAppearance_MaterialComponents_Body1
|
|
4146
|
+
style TextAppearance_MaterialComponents_Body2
|
|
4147
|
+
style TextAppearance_MaterialComponents_Button
|
|
4148
|
+
style TextAppearance_MaterialComponents_Caption
|
|
4149
|
+
style TextAppearance_MaterialComponents_Chip
|
|
4150
|
+
style TextAppearance_MaterialComponents_Headline1
|
|
4151
|
+
style TextAppearance_MaterialComponents_Headline2
|
|
4152
|
+
style TextAppearance_MaterialComponents_Headline3
|
|
4153
|
+
style TextAppearance_MaterialComponents_Headline4
|
|
4154
|
+
style TextAppearance_MaterialComponents_Headline5
|
|
4155
|
+
style TextAppearance_MaterialComponents_Headline6
|
|
4156
|
+
style TextAppearance_MaterialComponents_Overline
|
|
4157
|
+
style TextAppearance_MaterialComponents_Subtitle1
|
|
4158
|
+
style TextAppearance_MaterialComponents_Subtitle2
|
|
4159
|
+
style TextAppearance_MaterialComponents_TimePicker_Title
|
|
4160
|
+
style TextAppearance_MaterialComponents_Tooltip
|
|
1953
4161
|
style TextAppearance_Widget_AppCompat_ExpandedMenu_Item
|
|
1954
4162
|
style TextAppearance_Widget_AppCompat_Toolbar_Subtitle
|
|
1955
4163
|
style TextAppearance_Widget_AppCompat_Toolbar_Title
|
|
1956
4164
|
style Theme
|
|
4165
|
+
style ThemeOverlayColorAccentRed
|
|
1957
4166
|
style ThemeOverlay_AppCompat
|
|
1958
4167
|
style ThemeOverlay_AppCompat_ActionBar
|
|
1959
4168
|
style ThemeOverlay_AppCompat_Dark
|
|
@@ -1963,6 +4172,94 @@ style ThemeOverlay_AppCompat_DayNight_ActionBar
|
|
|
1963
4172
|
style ThemeOverlay_AppCompat_Dialog
|
|
1964
4173
|
style ThemeOverlay_AppCompat_Dialog_Alert
|
|
1965
4174
|
style ThemeOverlay_AppCompat_Light
|
|
4175
|
+
style ThemeOverlay_Design_TextInputEditText
|
|
4176
|
+
style ThemeOverlay_Material3
|
|
4177
|
+
style ThemeOverlay_Material3_ActionBar
|
|
4178
|
+
style ThemeOverlay_Material3_AutoCompleteTextView
|
|
4179
|
+
style ThemeOverlay_Material3_AutoCompleteTextView_FilledBox
|
|
4180
|
+
style ThemeOverlay_Material3_AutoCompleteTextView_FilledBox_Dense
|
|
4181
|
+
style ThemeOverlay_Material3_AutoCompleteTextView_OutlinedBox
|
|
4182
|
+
style ThemeOverlay_Material3_AutoCompleteTextView_OutlinedBox_Dense
|
|
4183
|
+
style ThemeOverlay_Material3_BottomAppBar
|
|
4184
|
+
style ThemeOverlay_Material3_BottomSheetDialog
|
|
4185
|
+
style ThemeOverlay_Material3_Button
|
|
4186
|
+
style ThemeOverlay_Material3_Button_ElevatedButton
|
|
4187
|
+
style ThemeOverlay_Material3_Button_TextButton
|
|
4188
|
+
style ThemeOverlay_Material3_Button_TextButton_Snackbar
|
|
4189
|
+
style ThemeOverlay_Material3_Button_TonalButton
|
|
4190
|
+
style ThemeOverlay_Material3_Chip
|
|
4191
|
+
style ThemeOverlay_Material3_Chip_Assist
|
|
4192
|
+
style ThemeOverlay_Material3_Dark
|
|
4193
|
+
style ThemeOverlay_Material3_Dark_ActionBar
|
|
4194
|
+
style ThemeOverlay_Material3_DayNight_BottomSheetDialog
|
|
4195
|
+
style ThemeOverlay_Material3_Dialog
|
|
4196
|
+
style ThemeOverlay_Material3_Dialog_Alert
|
|
4197
|
+
style ThemeOverlay_Material3_Dialog_Alert_Framework
|
|
4198
|
+
style ThemeOverlay_Material3_DynamicColors_Dark
|
|
4199
|
+
style ThemeOverlay_Material3_DynamicColors_DayNight
|
|
4200
|
+
style ThemeOverlay_Material3_DynamicColors_Light
|
|
4201
|
+
style ThemeOverlay_Material3_FloatingActionButton_Primary
|
|
4202
|
+
style ThemeOverlay_Material3_FloatingActionButton_Secondary
|
|
4203
|
+
style ThemeOverlay_Material3_FloatingActionButton_Surface
|
|
4204
|
+
style ThemeOverlay_Material3_FloatingActionButton_Tertiary
|
|
4205
|
+
style ThemeOverlay_Material3_Light
|
|
4206
|
+
style ThemeOverlay_Material3_Light_Dialog_Alert_Framework
|
|
4207
|
+
style ThemeOverlay_Material3_MaterialAlertDialog
|
|
4208
|
+
style ThemeOverlay_Material3_MaterialAlertDialog_Centered
|
|
4209
|
+
style ThemeOverlay_Material3_MaterialCalendar
|
|
4210
|
+
style ThemeOverlay_Material3_MaterialCalendar_Fullscreen
|
|
4211
|
+
style ThemeOverlay_Material3_MaterialCalendar_HeaderCancelButton
|
|
4212
|
+
style ThemeOverlay_Material3_MaterialTimePicker
|
|
4213
|
+
style ThemeOverlay_Material3_MaterialTimePicker_Display_TextInputEditText
|
|
4214
|
+
style ThemeOverlay_Material3_NavigationView
|
|
4215
|
+
style ThemeOverlay_Material3_Snackbar
|
|
4216
|
+
style ThemeOverlay_Material3_TextInputEditText
|
|
4217
|
+
style ThemeOverlay_Material3_TextInputEditText_FilledBox
|
|
4218
|
+
style ThemeOverlay_Material3_TextInputEditText_FilledBox_Dense
|
|
4219
|
+
style ThemeOverlay_Material3_TextInputEditText_OutlinedBox
|
|
4220
|
+
style ThemeOverlay_Material3_TextInputEditText_OutlinedBox_Dense
|
|
4221
|
+
style ThemeOverlay_Material3_Toolbar_Surface
|
|
4222
|
+
style ThemeOverlay_MaterialAlertDialog_Material3_Title_Icon
|
|
4223
|
+
style ThemeOverlay_MaterialComponents
|
|
4224
|
+
style ThemeOverlay_MaterialComponents_ActionBar
|
|
4225
|
+
style ThemeOverlay_MaterialComponents_ActionBar_Primary
|
|
4226
|
+
style ThemeOverlay_MaterialComponents_ActionBar_Surface
|
|
4227
|
+
style ThemeOverlay_MaterialComponents_AutoCompleteTextView
|
|
4228
|
+
style ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox
|
|
4229
|
+
style ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox_Dense
|
|
4230
|
+
style ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox
|
|
4231
|
+
style ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense
|
|
4232
|
+
style ThemeOverlay_MaterialComponents_BottomAppBar_Primary
|
|
4233
|
+
style ThemeOverlay_MaterialComponents_BottomAppBar_Surface
|
|
4234
|
+
style ThemeOverlay_MaterialComponents_BottomSheetDialog
|
|
4235
|
+
style ThemeOverlay_MaterialComponents_Dark
|
|
4236
|
+
style ThemeOverlay_MaterialComponents_Dark_ActionBar
|
|
4237
|
+
style ThemeOverlay_MaterialComponents_DayNight_BottomSheetDialog
|
|
4238
|
+
style ThemeOverlay_MaterialComponents_Dialog
|
|
4239
|
+
style ThemeOverlay_MaterialComponents_Dialog_Alert
|
|
4240
|
+
style ThemeOverlay_MaterialComponents_Dialog_Alert_Framework
|
|
4241
|
+
style ThemeOverlay_MaterialComponents_Light
|
|
4242
|
+
style ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework
|
|
4243
|
+
style ThemeOverlay_MaterialComponents_MaterialAlertDialog
|
|
4244
|
+
style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Centered
|
|
4245
|
+
style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date
|
|
4246
|
+
style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Calendar
|
|
4247
|
+
style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text
|
|
4248
|
+
style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text_Day
|
|
4249
|
+
style ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Spinner
|
|
4250
|
+
style ThemeOverlay_MaterialComponents_MaterialCalendar
|
|
4251
|
+
style ThemeOverlay_MaterialComponents_MaterialCalendar_Fullscreen
|
|
4252
|
+
style ThemeOverlay_MaterialComponents_TextInputEditText
|
|
4253
|
+
style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox
|
|
4254
|
+
style ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense
|
|
4255
|
+
style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox
|
|
4256
|
+
style ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense
|
|
4257
|
+
style ThemeOverlay_MaterialComponents_TimePicker
|
|
4258
|
+
style ThemeOverlay_MaterialComponents_TimePicker_Display
|
|
4259
|
+
style ThemeOverlay_MaterialComponents_TimePicker_Display_TextInputEditText
|
|
4260
|
+
style ThemeOverlay_MaterialComponents_Toolbar_Popup_Primary
|
|
4261
|
+
style ThemeOverlay_MaterialComponents_Toolbar_Primary
|
|
4262
|
+
style ThemeOverlay_MaterialComponents_Toolbar_Surface
|
|
1966
4263
|
style Theme_AppCompat
|
|
1967
4264
|
style Theme_AppCompat_CompactMenu
|
|
1968
4265
|
style Theme_AppCompat_DayNight
|
|
@@ -1988,10 +4285,88 @@ style Theme_AppCompat_NoActionBar
|
|
|
1988
4285
|
style Theme_Catalyst
|
|
1989
4286
|
style Theme_Catalyst_LogBox
|
|
1990
4287
|
style Theme_Catalyst_RedBox
|
|
4288
|
+
style Theme_Design
|
|
4289
|
+
style Theme_Design_BottomSheetDialog
|
|
4290
|
+
style Theme_Design_Light
|
|
4291
|
+
style Theme_Design_Light_BottomSheetDialog
|
|
4292
|
+
style Theme_Design_Light_NoActionBar
|
|
4293
|
+
style Theme_Design_NoActionBar
|
|
1991
4294
|
style Theme_FullScreenDialog
|
|
1992
4295
|
style Theme_FullScreenDialogAnimatedFade
|
|
1993
4296
|
style Theme_FullScreenDialogAnimatedSlide
|
|
1994
|
-
style
|
|
4297
|
+
style Theme_Material3_Dark
|
|
4298
|
+
style Theme_Material3_Dark_BottomSheetDialog
|
|
4299
|
+
style Theme_Material3_Dark_Dialog
|
|
4300
|
+
style Theme_Material3_Dark_DialogWhenLarge
|
|
4301
|
+
style Theme_Material3_Dark_Dialog_Alert
|
|
4302
|
+
style Theme_Material3_Dark_Dialog_MinWidth
|
|
4303
|
+
style Theme_Material3_Dark_NoActionBar
|
|
4304
|
+
style Theme_Material3_DayNight
|
|
4305
|
+
style Theme_Material3_DayNight_BottomSheetDialog
|
|
4306
|
+
style Theme_Material3_DayNight_Dialog
|
|
4307
|
+
style Theme_Material3_DayNight_DialogWhenLarge
|
|
4308
|
+
style Theme_Material3_DayNight_Dialog_Alert
|
|
4309
|
+
style Theme_Material3_DayNight_Dialog_MinWidth
|
|
4310
|
+
style Theme_Material3_DayNight_NoActionBar
|
|
4311
|
+
style Theme_Material3_DynamicColors_Dark
|
|
4312
|
+
style Theme_Material3_DynamicColors_DayNight
|
|
4313
|
+
style Theme_Material3_DynamicColors_Light
|
|
4314
|
+
style Theme_Material3_Light
|
|
4315
|
+
style Theme_Material3_Light_BottomSheetDialog
|
|
4316
|
+
style Theme_Material3_Light_Dialog
|
|
4317
|
+
style Theme_Material3_Light_DialogWhenLarge
|
|
4318
|
+
style Theme_Material3_Light_Dialog_Alert
|
|
4319
|
+
style Theme_Material3_Light_Dialog_MinWidth
|
|
4320
|
+
style Theme_Material3_Light_NoActionBar
|
|
4321
|
+
style Theme_MaterialComponents
|
|
4322
|
+
style Theme_MaterialComponents_BottomSheetDialog
|
|
4323
|
+
style Theme_MaterialComponents_Bridge
|
|
4324
|
+
style Theme_MaterialComponents_CompactMenu
|
|
4325
|
+
style Theme_MaterialComponents_DayNight
|
|
4326
|
+
style Theme_MaterialComponents_DayNight_BottomSheetDialog
|
|
4327
|
+
style Theme_MaterialComponents_DayNight_Bridge
|
|
4328
|
+
style Theme_MaterialComponents_DayNight_DarkActionBar
|
|
4329
|
+
style Theme_MaterialComponents_DayNight_DarkActionBar_Bridge
|
|
4330
|
+
style Theme_MaterialComponents_DayNight_Dialog
|
|
4331
|
+
style Theme_MaterialComponents_DayNight_DialogWhenLarge
|
|
4332
|
+
style Theme_MaterialComponents_DayNight_Dialog_Alert
|
|
4333
|
+
style Theme_MaterialComponents_DayNight_Dialog_Alert_Bridge
|
|
4334
|
+
style Theme_MaterialComponents_DayNight_Dialog_Bridge
|
|
4335
|
+
style Theme_MaterialComponents_DayNight_Dialog_FixedSize
|
|
4336
|
+
style Theme_MaterialComponents_DayNight_Dialog_FixedSize_Bridge
|
|
4337
|
+
style Theme_MaterialComponents_DayNight_Dialog_MinWidth
|
|
4338
|
+
style Theme_MaterialComponents_DayNight_Dialog_MinWidth_Bridge
|
|
4339
|
+
style Theme_MaterialComponents_DayNight_NoActionBar
|
|
4340
|
+
style Theme_MaterialComponents_DayNight_NoActionBar_Bridge
|
|
4341
|
+
style Theme_MaterialComponents_Dialog
|
|
4342
|
+
style Theme_MaterialComponents_DialogWhenLarge
|
|
4343
|
+
style Theme_MaterialComponents_Dialog_Alert
|
|
4344
|
+
style Theme_MaterialComponents_Dialog_Alert_Bridge
|
|
4345
|
+
style Theme_MaterialComponents_Dialog_Bridge
|
|
4346
|
+
style Theme_MaterialComponents_Dialog_FixedSize
|
|
4347
|
+
style Theme_MaterialComponents_Dialog_FixedSize_Bridge
|
|
4348
|
+
style Theme_MaterialComponents_Dialog_MinWidth
|
|
4349
|
+
style Theme_MaterialComponents_Dialog_MinWidth_Bridge
|
|
4350
|
+
style Theme_MaterialComponents_Light
|
|
4351
|
+
style Theme_MaterialComponents_Light_BarSize
|
|
4352
|
+
style Theme_MaterialComponents_Light_BottomSheetDialog
|
|
4353
|
+
style Theme_MaterialComponents_Light_Bridge
|
|
4354
|
+
style Theme_MaterialComponents_Light_DarkActionBar
|
|
4355
|
+
style Theme_MaterialComponents_Light_DarkActionBar_Bridge
|
|
4356
|
+
style Theme_MaterialComponents_Light_Dialog
|
|
4357
|
+
style Theme_MaterialComponents_Light_DialogWhenLarge
|
|
4358
|
+
style Theme_MaterialComponents_Light_Dialog_Alert
|
|
4359
|
+
style Theme_MaterialComponents_Light_Dialog_Alert_Bridge
|
|
4360
|
+
style Theme_MaterialComponents_Light_Dialog_Bridge
|
|
4361
|
+
style Theme_MaterialComponents_Light_Dialog_FixedSize
|
|
4362
|
+
style Theme_MaterialComponents_Light_Dialog_FixedSize_Bridge
|
|
4363
|
+
style Theme_MaterialComponents_Light_Dialog_MinWidth
|
|
4364
|
+
style Theme_MaterialComponents_Light_Dialog_MinWidth_Bridge
|
|
4365
|
+
style Theme_MaterialComponents_Light_LargeTouch
|
|
4366
|
+
style Theme_MaterialComponents_Light_NoActionBar
|
|
4367
|
+
style Theme_MaterialComponents_Light_NoActionBar_Bridge
|
|
4368
|
+
style Theme_MaterialComponents_NoActionBar
|
|
4369
|
+
style Theme_MaterialComponents_NoActionBar_Bridge
|
|
1995
4370
|
style Theme_ReactNative_AppCompat_Light
|
|
1996
4371
|
style Theme_ReactNative_AppCompat_Light_NoActionBar_FullScreen
|
|
1997
4372
|
style Widget_AppCompat_ActionBar
|
|
@@ -2069,6 +4444,277 @@ style Widget_AppCompat_Toolbar
|
|
|
2069
4444
|
style Widget_AppCompat_Toolbar_Button_Navigation
|
|
2070
4445
|
style Widget_Compat_NotificationActionContainer
|
|
2071
4446
|
style Widget_Compat_NotificationActionText
|
|
4447
|
+
style Widget_Design_AppBarLayout
|
|
4448
|
+
style Widget_Design_BottomNavigationView
|
|
4449
|
+
style Widget_Design_BottomSheet_Modal
|
|
4450
|
+
style Widget_Design_CollapsingToolbar
|
|
4451
|
+
style Widget_Design_FloatingActionButton
|
|
4452
|
+
style Widget_Design_NavigationView
|
|
4453
|
+
style Widget_Design_ScrimInsetsFrameLayout
|
|
4454
|
+
style Widget_Design_Snackbar
|
|
4455
|
+
style Widget_Design_TabLayout
|
|
4456
|
+
style Widget_Design_TextInputEditText
|
|
4457
|
+
style Widget_Design_TextInputLayout
|
|
4458
|
+
style Widget_Material3_ActionBar_Solid
|
|
4459
|
+
style Widget_Material3_ActionMode
|
|
4460
|
+
style Widget_Material3_AppBarLayout
|
|
4461
|
+
style Widget_Material3_AutoCompleteTextView_FilledBox
|
|
4462
|
+
style Widget_Material3_AutoCompleteTextView_FilledBox_Dense
|
|
4463
|
+
style Widget_Material3_AutoCompleteTextView_OutlinedBox
|
|
4464
|
+
style Widget_Material3_AutoCompleteTextView_OutlinedBox_Dense
|
|
4465
|
+
style Widget_Material3_Badge
|
|
4466
|
+
style Widget_Material3_BottomAppBar
|
|
4467
|
+
style Widget_Material3_BottomNavigationView
|
|
4468
|
+
style Widget_Material3_BottomNavigationView_ActiveIndicator
|
|
4469
|
+
style Widget_Material3_BottomSheet
|
|
4470
|
+
style Widget_Material3_BottomSheet_Modal
|
|
4471
|
+
style Widget_Material3_Button
|
|
4472
|
+
style Widget_Material3_Button_ElevatedButton
|
|
4473
|
+
style Widget_Material3_Button_ElevatedButton_Icon
|
|
4474
|
+
style Widget_Material3_Button_Icon
|
|
4475
|
+
style Widget_Material3_Button_IconButton
|
|
4476
|
+
style Widget_Material3_Button_OutlinedButton
|
|
4477
|
+
style Widget_Material3_Button_OutlinedButton_Icon
|
|
4478
|
+
style Widget_Material3_Button_TextButton
|
|
4479
|
+
style Widget_Material3_Button_TextButton_Dialog
|
|
4480
|
+
style Widget_Material3_Button_TextButton_Dialog_Flush
|
|
4481
|
+
style Widget_Material3_Button_TextButton_Dialog_Icon
|
|
4482
|
+
style Widget_Material3_Button_TextButton_Icon
|
|
4483
|
+
style Widget_Material3_Button_TextButton_Snackbar
|
|
4484
|
+
style Widget_Material3_Button_TonalButton
|
|
4485
|
+
style Widget_Material3_Button_TonalButton_Icon
|
|
4486
|
+
style Widget_Material3_Button_UnelevatedButton
|
|
4487
|
+
style Widget_Material3_CardView_Elevated
|
|
4488
|
+
style Widget_Material3_CardView_Filled
|
|
4489
|
+
style Widget_Material3_CardView_Outlined
|
|
4490
|
+
style Widget_Material3_CheckedTextView
|
|
4491
|
+
style Widget_Material3_ChipGroup
|
|
4492
|
+
style Widget_Material3_Chip_Assist
|
|
4493
|
+
style Widget_Material3_Chip_Assist_Elevated
|
|
4494
|
+
style Widget_Material3_Chip_Filter
|
|
4495
|
+
style Widget_Material3_Chip_Filter_Elevated
|
|
4496
|
+
style Widget_Material3_Chip_Input
|
|
4497
|
+
style Widget_Material3_Chip_Input_Elevated
|
|
4498
|
+
style Widget_Material3_Chip_Input_Icon
|
|
4499
|
+
style Widget_Material3_Chip_Input_Icon_Elevated
|
|
4500
|
+
style Widget_Material3_Chip_Suggestion
|
|
4501
|
+
style Widget_Material3_Chip_Suggestion_Elevated
|
|
4502
|
+
style Widget_Material3_CircularProgressIndicator
|
|
4503
|
+
style Widget_Material3_CircularProgressIndicator_ExtraSmall
|
|
4504
|
+
style Widget_Material3_CircularProgressIndicator_Medium
|
|
4505
|
+
style Widget_Material3_CircularProgressIndicator_Small
|
|
4506
|
+
style Widget_Material3_CollapsingToolbar
|
|
4507
|
+
style Widget_Material3_CollapsingToolbar_Large
|
|
4508
|
+
style Widget_Material3_CollapsingToolbar_Medium
|
|
4509
|
+
style Widget_Material3_CompoundButton_CheckBox
|
|
4510
|
+
style Widget_Material3_CompoundButton_RadioButton
|
|
4511
|
+
style Widget_Material3_CompoundButton_Switch
|
|
4512
|
+
style Widget_Material3_DrawerLayout
|
|
4513
|
+
style Widget_Material3_ExtendedFloatingActionButton_Icon_Primary
|
|
4514
|
+
style Widget_Material3_ExtendedFloatingActionButton_Icon_Secondary
|
|
4515
|
+
style Widget_Material3_ExtendedFloatingActionButton_Icon_Surface
|
|
4516
|
+
style Widget_Material3_ExtendedFloatingActionButton_Icon_Tertiary
|
|
4517
|
+
style Widget_Material3_ExtendedFloatingActionButton_Primary
|
|
4518
|
+
style Widget_Material3_ExtendedFloatingActionButton_Secondary
|
|
4519
|
+
style Widget_Material3_ExtendedFloatingActionButton_Surface
|
|
4520
|
+
style Widget_Material3_ExtendedFloatingActionButton_Tertiary
|
|
4521
|
+
style Widget_Material3_FloatingActionButton_Large_Primary
|
|
4522
|
+
style Widget_Material3_FloatingActionButton_Large_Secondary
|
|
4523
|
+
style Widget_Material3_FloatingActionButton_Large_Surface
|
|
4524
|
+
style Widget_Material3_FloatingActionButton_Large_Tertiary
|
|
4525
|
+
style Widget_Material3_FloatingActionButton_Primary
|
|
4526
|
+
style Widget_Material3_FloatingActionButton_Secondary
|
|
4527
|
+
style Widget_Material3_FloatingActionButton_Surface
|
|
4528
|
+
style Widget_Material3_FloatingActionButton_Tertiary
|
|
4529
|
+
style Widget_Material3_Light_ActionBar_Solid
|
|
4530
|
+
style Widget_Material3_LinearProgressIndicator
|
|
4531
|
+
style Widget_Material3_MaterialCalendar
|
|
4532
|
+
style Widget_Material3_MaterialCalendar_Day
|
|
4533
|
+
style Widget_Material3_MaterialCalendar_DayOfWeekLabel
|
|
4534
|
+
style Widget_Material3_MaterialCalendar_DayTextView
|
|
4535
|
+
style Widget_Material3_MaterialCalendar_Day_Invalid
|
|
4536
|
+
style Widget_Material3_MaterialCalendar_Day_Selected
|
|
4537
|
+
style Widget_Material3_MaterialCalendar_Day_Today
|
|
4538
|
+
style Widget_Material3_MaterialCalendar_Fullscreen
|
|
4539
|
+
style Widget_Material3_MaterialCalendar_HeaderCancelButton
|
|
4540
|
+
style Widget_Material3_MaterialCalendar_HeaderDivider
|
|
4541
|
+
style Widget_Material3_MaterialCalendar_HeaderLayout
|
|
4542
|
+
style Widget_Material3_MaterialCalendar_HeaderSelection
|
|
4543
|
+
style Widget_Material3_MaterialCalendar_HeaderSelection_Fullscreen
|
|
4544
|
+
style Widget_Material3_MaterialCalendar_HeaderTitle
|
|
4545
|
+
style Widget_Material3_MaterialCalendar_HeaderToggleButton
|
|
4546
|
+
style Widget_Material3_MaterialCalendar_Item
|
|
4547
|
+
style Widget_Material3_MaterialCalendar_MonthNavigationButton
|
|
4548
|
+
style Widget_Material3_MaterialCalendar_MonthTextView
|
|
4549
|
+
style Widget_Material3_MaterialCalendar_Year
|
|
4550
|
+
style Widget_Material3_MaterialCalendar_YearNavigationButton
|
|
4551
|
+
style Widget_Material3_MaterialCalendar_Year_Selected
|
|
4552
|
+
style Widget_Material3_MaterialCalendar_Year_Today
|
|
4553
|
+
style Widget_Material3_MaterialDivider
|
|
4554
|
+
style Widget_Material3_MaterialDivider_Heavy
|
|
4555
|
+
style Widget_Material3_MaterialTimePicker
|
|
4556
|
+
style Widget_Material3_MaterialTimePicker_Button
|
|
4557
|
+
style Widget_Material3_MaterialTimePicker_Clock
|
|
4558
|
+
style Widget_Material3_MaterialTimePicker_Display
|
|
4559
|
+
style Widget_Material3_MaterialTimePicker_Display_Divider
|
|
4560
|
+
style Widget_Material3_MaterialTimePicker_Display_HelperText
|
|
4561
|
+
style Widget_Material3_MaterialTimePicker_Display_TextInputEditText
|
|
4562
|
+
style Widget_Material3_MaterialTimePicker_Display_TextInputLayout
|
|
4563
|
+
style Widget_Material3_MaterialTimePicker_ImageButton
|
|
4564
|
+
style Widget_Material3_NavigationRailView
|
|
4565
|
+
style Widget_Material3_NavigationRailView_ActiveIndicator
|
|
4566
|
+
style Widget_Material3_NavigationView
|
|
4567
|
+
style Widget_Material3_PopupMenu
|
|
4568
|
+
style Widget_Material3_PopupMenu_ContextMenu
|
|
4569
|
+
style Widget_Material3_PopupMenu_ListPopupWindow
|
|
4570
|
+
style Widget_Material3_PopupMenu_Overflow
|
|
4571
|
+
style Widget_Material3_Slider
|
|
4572
|
+
style Widget_Material3_Snackbar
|
|
4573
|
+
style Widget_Material3_Snackbar_FullWidth
|
|
4574
|
+
style Widget_Material3_Snackbar_TextView
|
|
4575
|
+
style Widget_Material3_TabLayout
|
|
4576
|
+
style Widget_Material3_TabLayout_OnSurface
|
|
4577
|
+
style Widget_Material3_TabLayout_Secondary
|
|
4578
|
+
style Widget_Material3_TextInputEditText_FilledBox
|
|
4579
|
+
style Widget_Material3_TextInputEditText_FilledBox_Dense
|
|
4580
|
+
style Widget_Material3_TextInputEditText_OutlinedBox
|
|
4581
|
+
style Widget_Material3_TextInputEditText_OutlinedBox_Dense
|
|
4582
|
+
style Widget_Material3_TextInputLayout_FilledBox
|
|
4583
|
+
style Widget_Material3_TextInputLayout_FilledBox_Dense
|
|
4584
|
+
style Widget_Material3_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu
|
|
4585
|
+
style Widget_Material3_TextInputLayout_FilledBox_ExposedDropdownMenu
|
|
4586
|
+
style Widget_Material3_TextInputLayout_OutlinedBox
|
|
4587
|
+
style Widget_Material3_TextInputLayout_OutlinedBox_Dense
|
|
4588
|
+
style Widget_Material3_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu
|
|
4589
|
+
style Widget_Material3_TextInputLayout_OutlinedBox_ExposedDropdownMenu
|
|
4590
|
+
style Widget_Material3_Toolbar
|
|
4591
|
+
style Widget_Material3_Toolbar_OnSurface
|
|
4592
|
+
style Widget_Material3_Toolbar_Surface
|
|
4593
|
+
style Widget_Material3_Tooltip
|
|
4594
|
+
style Widget_MaterialComponents_ActionBar_Primary
|
|
4595
|
+
style Widget_MaterialComponents_ActionBar_PrimarySurface
|
|
4596
|
+
style Widget_MaterialComponents_ActionBar_Solid
|
|
4597
|
+
style Widget_MaterialComponents_ActionBar_Surface
|
|
4598
|
+
style Widget_MaterialComponents_AppBarLayout_Primary
|
|
4599
|
+
style Widget_MaterialComponents_AppBarLayout_PrimarySurface
|
|
4600
|
+
style Widget_MaterialComponents_AppBarLayout_Surface
|
|
4601
|
+
style Widget_MaterialComponents_AutoCompleteTextView_FilledBox
|
|
4602
|
+
style Widget_MaterialComponents_AutoCompleteTextView_FilledBox_Dense
|
|
4603
|
+
style Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox
|
|
4604
|
+
style Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense
|
|
4605
|
+
style Widget_MaterialComponents_Badge
|
|
4606
|
+
style Widget_MaterialComponents_BottomAppBar
|
|
4607
|
+
style Widget_MaterialComponents_BottomAppBar_Colored
|
|
4608
|
+
style Widget_MaterialComponents_BottomAppBar_PrimarySurface
|
|
4609
|
+
style Widget_MaterialComponents_BottomNavigationView
|
|
4610
|
+
style Widget_MaterialComponents_BottomNavigationView_Colored
|
|
4611
|
+
style Widget_MaterialComponents_BottomNavigationView_PrimarySurface
|
|
4612
|
+
style Widget_MaterialComponents_BottomSheet
|
|
4613
|
+
style Widget_MaterialComponents_BottomSheet_Modal
|
|
4614
|
+
style Widget_MaterialComponents_Button
|
|
4615
|
+
style Widget_MaterialComponents_Button_Icon
|
|
4616
|
+
style Widget_MaterialComponents_Button_OutlinedButton
|
|
4617
|
+
style Widget_MaterialComponents_Button_OutlinedButton_Icon
|
|
4618
|
+
style Widget_MaterialComponents_Button_TextButton
|
|
4619
|
+
style Widget_MaterialComponents_Button_TextButton_Dialog
|
|
4620
|
+
style Widget_MaterialComponents_Button_TextButton_Dialog_Flush
|
|
4621
|
+
style Widget_MaterialComponents_Button_TextButton_Dialog_Icon
|
|
4622
|
+
style Widget_MaterialComponents_Button_TextButton_Icon
|
|
4623
|
+
style Widget_MaterialComponents_Button_TextButton_Snackbar
|
|
4624
|
+
style Widget_MaterialComponents_Button_UnelevatedButton
|
|
4625
|
+
style Widget_MaterialComponents_Button_UnelevatedButton_Icon
|
|
4626
|
+
style Widget_MaterialComponents_CardView
|
|
4627
|
+
style Widget_MaterialComponents_CheckedTextView
|
|
4628
|
+
style Widget_MaterialComponents_ChipGroup
|
|
4629
|
+
style Widget_MaterialComponents_Chip_Action
|
|
4630
|
+
style Widget_MaterialComponents_Chip_Choice
|
|
4631
|
+
style Widget_MaterialComponents_Chip_Entry
|
|
4632
|
+
style Widget_MaterialComponents_Chip_Filter
|
|
4633
|
+
style Widget_MaterialComponents_CircularProgressIndicator
|
|
4634
|
+
style Widget_MaterialComponents_CircularProgressIndicator_ExtraSmall
|
|
4635
|
+
style Widget_MaterialComponents_CircularProgressIndicator_Medium
|
|
4636
|
+
style Widget_MaterialComponents_CircularProgressIndicator_Small
|
|
4637
|
+
style Widget_MaterialComponents_CollapsingToolbar
|
|
4638
|
+
style Widget_MaterialComponents_CompoundButton_CheckBox
|
|
4639
|
+
style Widget_MaterialComponents_CompoundButton_RadioButton
|
|
4640
|
+
style Widget_MaterialComponents_CompoundButton_Switch
|
|
4641
|
+
style Widget_MaterialComponents_ExtendedFloatingActionButton
|
|
4642
|
+
style Widget_MaterialComponents_ExtendedFloatingActionButton_Icon
|
|
4643
|
+
style Widget_MaterialComponents_FloatingActionButton
|
|
4644
|
+
style Widget_MaterialComponents_Light_ActionBar_Solid
|
|
4645
|
+
style Widget_MaterialComponents_LinearProgressIndicator
|
|
4646
|
+
style Widget_MaterialComponents_MaterialButtonToggleGroup
|
|
4647
|
+
style Widget_MaterialComponents_MaterialCalendar
|
|
4648
|
+
style Widget_MaterialComponents_MaterialCalendar_Day
|
|
4649
|
+
style Widget_MaterialComponents_MaterialCalendar_DayOfWeekLabel
|
|
4650
|
+
style Widget_MaterialComponents_MaterialCalendar_DayTextView
|
|
4651
|
+
style Widget_MaterialComponents_MaterialCalendar_Day_Invalid
|
|
4652
|
+
style Widget_MaterialComponents_MaterialCalendar_Day_Selected
|
|
4653
|
+
style Widget_MaterialComponents_MaterialCalendar_Day_Today
|
|
4654
|
+
style Widget_MaterialComponents_MaterialCalendar_Fullscreen
|
|
4655
|
+
style Widget_MaterialComponents_MaterialCalendar_HeaderCancelButton
|
|
4656
|
+
style Widget_MaterialComponents_MaterialCalendar_HeaderConfirmButton
|
|
4657
|
+
style Widget_MaterialComponents_MaterialCalendar_HeaderDivider
|
|
4658
|
+
style Widget_MaterialComponents_MaterialCalendar_HeaderLayout
|
|
4659
|
+
style Widget_MaterialComponents_MaterialCalendar_HeaderSelection
|
|
4660
|
+
style Widget_MaterialComponents_MaterialCalendar_HeaderSelection_Fullscreen
|
|
4661
|
+
style Widget_MaterialComponents_MaterialCalendar_HeaderTitle
|
|
4662
|
+
style Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton
|
|
4663
|
+
style Widget_MaterialComponents_MaterialCalendar_Item
|
|
4664
|
+
style Widget_MaterialComponents_MaterialCalendar_MonthNavigationButton
|
|
4665
|
+
style Widget_MaterialComponents_MaterialCalendar_MonthTextView
|
|
4666
|
+
style Widget_MaterialComponents_MaterialCalendar_Year
|
|
4667
|
+
style Widget_MaterialComponents_MaterialCalendar_YearNavigationButton
|
|
4668
|
+
style Widget_MaterialComponents_MaterialCalendar_Year_Selected
|
|
4669
|
+
style Widget_MaterialComponents_MaterialCalendar_Year_Today
|
|
4670
|
+
style Widget_MaterialComponents_MaterialDivider
|
|
4671
|
+
style Widget_MaterialComponents_NavigationRailView
|
|
4672
|
+
style Widget_MaterialComponents_NavigationRailView_Colored
|
|
4673
|
+
style Widget_MaterialComponents_NavigationRailView_Colored_Compact
|
|
4674
|
+
style Widget_MaterialComponents_NavigationRailView_Compact
|
|
4675
|
+
style Widget_MaterialComponents_NavigationRailView_PrimarySurface
|
|
4676
|
+
style Widget_MaterialComponents_NavigationView
|
|
4677
|
+
style Widget_MaterialComponents_PopupMenu
|
|
4678
|
+
style Widget_MaterialComponents_PopupMenu_ContextMenu
|
|
4679
|
+
style Widget_MaterialComponents_PopupMenu_ListPopupWindow
|
|
4680
|
+
style Widget_MaterialComponents_PopupMenu_Overflow
|
|
4681
|
+
style Widget_MaterialComponents_ProgressIndicator
|
|
4682
|
+
style Widget_MaterialComponents_ShapeableImageView
|
|
4683
|
+
style Widget_MaterialComponents_Slider
|
|
4684
|
+
style Widget_MaterialComponents_Snackbar
|
|
4685
|
+
style Widget_MaterialComponents_Snackbar_FullWidth
|
|
4686
|
+
style Widget_MaterialComponents_Snackbar_TextView
|
|
4687
|
+
style Widget_MaterialComponents_TabLayout
|
|
4688
|
+
style Widget_MaterialComponents_TabLayout_Colored
|
|
4689
|
+
style Widget_MaterialComponents_TabLayout_PrimarySurface
|
|
4690
|
+
style Widget_MaterialComponents_TextInputEditText_FilledBox
|
|
4691
|
+
style Widget_MaterialComponents_TextInputEditText_FilledBox_Dense
|
|
4692
|
+
style Widget_MaterialComponents_TextInputEditText_OutlinedBox
|
|
4693
|
+
style Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense
|
|
4694
|
+
style Widget_MaterialComponents_TextInputLayout_FilledBox
|
|
4695
|
+
style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense
|
|
4696
|
+
style Widget_MaterialComponents_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu
|
|
4697
|
+
style Widget_MaterialComponents_TextInputLayout_FilledBox_ExposedDropdownMenu
|
|
4698
|
+
style Widget_MaterialComponents_TextInputLayout_OutlinedBox
|
|
4699
|
+
style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense
|
|
4700
|
+
style Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu
|
|
4701
|
+
style Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu
|
|
4702
|
+
style Widget_MaterialComponents_TextView
|
|
4703
|
+
style Widget_MaterialComponents_TimePicker
|
|
4704
|
+
style Widget_MaterialComponents_TimePicker_Button
|
|
4705
|
+
style Widget_MaterialComponents_TimePicker_Clock
|
|
4706
|
+
style Widget_MaterialComponents_TimePicker_Display
|
|
4707
|
+
style Widget_MaterialComponents_TimePicker_Display_Divider
|
|
4708
|
+
style Widget_MaterialComponents_TimePicker_Display_HelperText
|
|
4709
|
+
style Widget_MaterialComponents_TimePicker_Display_TextInputEditText
|
|
4710
|
+
style Widget_MaterialComponents_TimePicker_Display_TextInputLayout
|
|
4711
|
+
style Widget_MaterialComponents_TimePicker_ImageButton
|
|
4712
|
+
style Widget_MaterialComponents_TimePicker_ImageButton_ShapeAppearance
|
|
4713
|
+
style Widget_MaterialComponents_Toolbar
|
|
4714
|
+
style Widget_MaterialComponents_Toolbar_Primary
|
|
4715
|
+
style Widget_MaterialComponents_Toolbar_PrimarySurface
|
|
4716
|
+
style Widget_MaterialComponents_Toolbar_Surface
|
|
4717
|
+
style Widget_MaterialComponents_Tooltip
|
|
2072
4718
|
style Widget_Support_CoordinatorLayout
|
|
2073
4719
|
style redboxButton
|
|
2074
4720
|
styleable ActionBar background backgroundSplit backgroundStacked contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation customNavigationLayout displayOptions divider elevation height hideOnContentScroll homeAsUpIndicator homeLayout icon indeterminateProgressStyle itemPadding logo navigationMode popupTheme progressBarPadding progressBarStyle subtitle subtitleTextStyle title titleTextStyle
|
|
@@ -2081,28 +4727,53 @@ styleable AlertDialog android_layout buttonIconDimen buttonPanelSideLayout listI
|
|
|
2081
4727
|
styleable AnimatedStateListDrawableCompat android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible
|
|
2082
4728
|
styleable AnimatedStateListDrawableItem android_drawable android_id
|
|
2083
4729
|
styleable AnimatedStateListDrawableTransition android_drawable android_fromId android_reversible android_toId
|
|
4730
|
+
styleable AppBarLayout android_background android_keyboardNavigationCluster android_touchscreenBlocksFocus elevation expanded liftOnScroll liftOnScrollTargetViewId statusBarForeground
|
|
4731
|
+
styleable AppBarLayoutStates state_collapsed state_collapsible state_liftable state_lifted
|
|
4732
|
+
styleable AppBarLayout_Layout layout_scrollEffect layout_scrollFlags layout_scrollInterpolator
|
|
4733
|
+
styleable AppCompatEmojiHelper
|
|
2084
4734
|
styleable AppCompatImageView android_src srcCompat tint tintMode
|
|
2085
4735
|
styleable AppCompatSeekBar android_thumb tickMark tickMarkTint tickMarkTintMode
|
|
2086
4736
|
styleable AppCompatTextHelper android_drawableBottom android_drawableEnd android_drawableLeft android_drawableRight android_drawableStart android_drawableTop android_textAppearance
|
|
2087
|
-
styleable AppCompatTextView android_textAppearance autoSizeMaxTextSize autoSizeMinTextSize autoSizePresetSizes autoSizeStepGranularity autoSizeTextType drawableBottomCompat drawableEndCompat drawableLeftCompat drawableRightCompat drawableStartCompat drawableTint drawableTintMode drawableTopCompat firstBaselineToTopHeight fontFamily fontVariationSettings lastBaselineToBottomHeight lineHeight textAllCaps textLocale
|
|
4737
|
+
styleable AppCompatTextView android_textAppearance autoSizeMaxTextSize autoSizeMinTextSize autoSizePresetSizes autoSizeStepGranularity autoSizeTextType drawableBottomCompat drawableEndCompat drawableLeftCompat drawableRightCompat drawableStartCompat drawableTint drawableTintMode drawableTopCompat emojiCompatEnabled firstBaselineToTopHeight fontFamily fontVariationSettings lastBaselineToBottomHeight lineHeight textAllCaps textLocale
|
|
2088
4738
|
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
|
|
4739
|
+
styleable Badge backgroundColor badgeGravity badgeRadius badgeTextColor badgeWidePadding badgeWithTextRadius horizontalOffset horizontalOffsetWithText maxCharacterCount number verticalOffset verticalOffsetWithText
|
|
4740
|
+
styleable BaseProgressIndicator android_indeterminate hideAnimationBehavior indicatorColor minHideDelay showAnimationBehavior showDelay trackColor trackCornerRadius trackThickness
|
|
4741
|
+
styleable BottomAppBar backgroundTint elevation fabAlignmentMode fabAnimationMode fabCradleMargin fabCradleRoundedCornerRadius fabCradleVerticalOffset hideOnScroll navigationIconTint paddingBottomSystemWindowInsets paddingLeftSystemWindowInsets paddingRightSystemWindowInsets
|
|
4742
|
+
styleable BottomNavigationView android_minHeight itemHorizontalTranslationEnabled
|
|
4743
|
+
styleable BottomSheetBehavior_Layout android_elevation android_maxHeight 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
|
|
2089
4744
|
styleable ButtonBarLayout allowStacking
|
|
2090
4745
|
styleable Capability queryPatterns shortcutMatchRequired
|
|
4746
|
+
styleable CardView android_minHeight android_minWidth cardBackgroundColor cardCornerRadius cardElevation cardMaxElevation cardPreventCornerOverlap cardUseCompatPadding contentPadding contentPaddingBottom contentPaddingLeft contentPaddingRight contentPaddingTop
|
|
2091
4747
|
styleable Carousel carousel_backwardTransition carousel_emptyViewsBehavior carousel_firstView carousel_forwardTransition carousel_infinite carousel_nextState carousel_previousState carousel_touchUpMode carousel_touchUp_dampeningFactor carousel_touchUp_velocityThreshold
|
|
2092
|
-
styleable
|
|
4748
|
+
styleable CheckedTextView android_checkMark checkMarkCompat checkMarkTint checkMarkTintMode
|
|
4749
|
+
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
|
|
4750
|
+
styleable ChipGroup checkedChip chipSpacing chipSpacingHorizontal chipSpacingVertical selectionRequired singleLine singleSelection
|
|
4751
|
+
styleable CircularProgressIndicator indicatorDirectionCircular indicatorInset indicatorSize
|
|
4752
|
+
styleable ClockFaceView clockFaceBackgroundColor clockNumberTextColor
|
|
4753
|
+
styleable ClockHandView clockHandColor materialCircleRadius selectorSize
|
|
4754
|
+
styleable CollapsingToolbarLayout collapsedTitleGravity collapsedTitleTextAppearance collapsedTitleTextColor contentScrim expandedTitleGravity expandedTitleMargin expandedTitleMarginBottom expandedTitleMarginEnd expandedTitleMarginStart expandedTitleMarginTop expandedTitleTextAppearance expandedTitleTextColor extraMultilineHeightEnabled forceApplySystemWindowInsetTop maxLines scrimAnimationDuration scrimVisibleHeightTrigger statusBarScrim title titleCollapseMode titleEnabled titlePositionInterpolator toolbarId
|
|
4755
|
+
styleable CollapsingToolbarLayout_Layout layout_collapseMode layout_collapseParallaxMultiplier
|
|
4756
|
+
styleable ColorStateListItem alpha android_alpha android_color android_lStar lStar
|
|
2093
4757
|
styleable CompoundButton android_button buttonCompat buttonTint buttonTintMode
|
|
2094
|
-
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 animateCircleAngleTo animateRelativeTo barrierAllowsGoneWidgets barrierDirection barrierMargin chainUseRtl constraint_referenced_ids constraint_referenced_tags 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_constraintBaseline_toBottomOf layout_constraintBaseline_toTopOf 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 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 layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBaseline layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop layout_marginBaseline layout_wrapBehaviorInParent motionProgress motionStagger pathMotionArc pivotAnchor polarRelativeTo quantizeMotionInterpolator quantizeMotionPhase quantizeMotionSteps transformPivotTarget transitionEasing transitionPathRotate visibilityMode
|
|
2095
|
-
styleable ConstraintLayout_Layout android_elevation android_layout_height android_layout_margin android_layout_marginBottom android_layout_marginEnd android_layout_marginHorizontal android_layout_marginLeft android_layout_marginRight android_layout_marginStart android_layout_marginTop android_layout_marginVertical android_layout_width 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 circularflow_angles circularflow_defaultAngle circularflow_defaultRadius circularflow_radiusInDP circularflow_viewCenter constraintSet constraint_referenced_ids constraint_referenced_tags 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_constraintBaseline_toBottomOf layout_constraintBaseline_toTopOf 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 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 layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBaseline layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop layout_marginBaseline layout_optimizationLevel layout_wrapBehaviorInParent
|
|
4758
|
+
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 animateCircleAngleTo animateRelativeTo animate_relativeTo barrierAllowsGoneWidgets barrierDirection barrierMargin chainUseRtl constraint_referenced_ids constraint_referenced_tags 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 guidelineUseRtl layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBaseline_toBottomOf layout_constraintBaseline_toTopOf 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 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 layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBaseline layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop layout_marginBaseline layout_wrapBehaviorInParent motionProgress motionStagger pathMotionArc pivotAnchor polarRelativeTo quantizeMotionInterpolator quantizeMotionPhase quantizeMotionSteps transformPivotTarget transitionEasing transitionPathRotate visibilityMode
|
|
4759
|
+
styleable ConstraintLayout_Layout android_elevation android_layout_height android_layout_margin android_layout_marginBottom android_layout_marginEnd android_layout_marginHorizontal android_layout_marginLeft android_layout_marginRight android_layout_marginStart android_layout_marginTop android_layout_marginVertical android_layout_width 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 circularflow_angles circularflow_defaultAngle circularflow_defaultRadius circularflow_radiusInDP circularflow_viewCenter constraintSet constraint_referenced_ids constraint_referenced_tags 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 guidelineUseRtl layoutDescription layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBaseline_toBottomOf layout_constraintBaseline_toTopOf 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 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 layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBaseline layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop layout_marginBaseline layout_optimizationLevel layout_wrapBehaviorInParent
|
|
2096
4760
|
styleable ConstraintLayout_ReactiveGuide reactiveGuide_animateChange reactiveGuide_applyToAllConstraintSets reactiveGuide_applyToConstraintSet reactiveGuide_valueId
|
|
2097
4761
|
styleable ConstraintLayout_placeholder content placeholder_emptyVisibility
|
|
2098
|
-
styleable ConstraintOverride 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 animateCircleAngleTo animateRelativeTo 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_constraintBottom_creator layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight 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_constraintRight_creator layout_constraintTag layout_constraintTop_creator layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBaseline layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop layout_marginBaseline layout_wrapBehaviorInParent motionProgress motionStagger motionTarget pathMotionArc pivotAnchor polarRelativeTo quantizeMotionInterpolator quantizeMotionPhase quantizeMotionSteps transformPivotTarget transitionEasing transitionPathRotate visibilityMode
|
|
2099
|
-
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 animateCircleAngleTo animateRelativeTo barrierAllowsGoneWidgets barrierDirection barrierMargin chainUseRtl constraintRotate constraint_referenced_ids constraint_referenced_tags 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_constraintBaseline_toBottomOf layout_constraintBaseline_toTopOf 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_goneMarginBaseline layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop layout_marginBaseline layout_wrapBehaviorInParent motionProgress motionStagger pathMotionArc pivotAnchor polarRelativeTo quantizeMotionSteps transitionEasing transitionPathRotate
|
|
4762
|
+
styleable ConstraintOverride 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 animateCircleAngleTo animateRelativeTo 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 guidelineUseRtl layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBottom_creator layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight 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_constraintRight_creator layout_constraintTag layout_constraintTop_creator layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBaseline layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop layout_marginBaseline layout_wrapBehaviorInParent motionProgress motionStagger motionTarget pathMotionArc pivotAnchor polarRelativeTo quantizeMotionInterpolator quantizeMotionPhase quantizeMotionSteps transformPivotTarget transitionEasing transitionPathRotate visibilityMode
|
|
4763
|
+
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 animateCircleAngleTo animateRelativeTo animate_relativeTo barrierAllowsGoneWidgets barrierDirection barrierMargin chainUseRtl constraintRotate constraint_referenced_ids constraint_referenced_tags 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 guidelineUseRtl layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBaseline_toBottomOf layout_constraintBaseline_toTopOf 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_goneMarginBaseline layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop layout_marginBaseline layout_wrapBehaviorInParent motionProgress motionStagger pathMotionArc pivotAnchor polarRelativeTo quantizeMotionSteps transitionEasing transitionPathRotate
|
|
2100
4764
|
styleable CoordinatorLayout keylines statusBarBackground
|
|
2101
4765
|
styleable CoordinatorLayout_Layout android_layout_gravity layout_anchor layout_anchorGravity layout_behavior layout_dodgeInsetEdges layout_insetEdge layout_keyline
|
|
2102
4766
|
styleable CustomAttribute attributeName customBoolean customColorDrawableValue customColorValue customDimension customFloatValue customIntegerValue customPixelDimension customReference customStringValue methodName
|
|
2103
4767
|
styleable DrawerArrowToggle arrowHeadLength arrowShaftLength barLength color drawableSize gapBetweenBars spinBars thickness
|
|
4768
|
+
styleable DrawerLayout elevation
|
|
4769
|
+
styleable ExtendedFloatingActionButton collapsedSize elevation extendMotionSpec hideMotionSpec showMotionSpec shrinkMotionSpec
|
|
4770
|
+
styleable ExtendedFloatingActionButton_Behavior_Layout behavior_autoHide behavior_autoShrink
|
|
4771
|
+
styleable FloatingActionButton android_enabled backgroundTint backgroundTintMode borderWidth elevation ensureMinTouchTargetSize fabCustomSize fabSize hideMotionSpec hoveredFocusedTranslationZ maxImageSize pressedTranslationZ rippleColor shapeAppearance shapeAppearanceOverlay showMotionSpec useCompatPadding
|
|
4772
|
+
styleable FloatingActionButton_Behavior_Layout behavior_autoHide
|
|
4773
|
+
styleable FlowLayout itemSpacing lineSpacing
|
|
2104
4774
|
styleable FontFamily fontProviderAuthority fontProviderCerts fontProviderFetchStrategy fontProviderFetchTimeout fontProviderPackage fontProviderQuery fontProviderSystemFontFamily
|
|
2105
4775
|
styleable FontFamilyFont android_font android_fontStyle android_fontVariationSettings android_fontWeight android_ttcIndex font fontStyle fontVariationSettings fontWeight ttcIndex
|
|
4776
|
+
styleable ForegroundLinearLayout android_foreground android_foregroundGravity foregroundInsidePadding
|
|
2106
4777
|
styleable Fragment android_id android_name android_tag
|
|
2107
4778
|
styleable FragmentContainerView android_name android_tag
|
|
2108
4779
|
styleable GenericDraweeHierarchy actualImageScaleType backgroundImage fadeDuration failureImage failureImageScaleType overlayImage placeholderImage placeholderImageScaleType pressedStateOverlayImage progressBarAutoRotateInterval progressBarImage progressBarImageScaleType retryImage retryImageScaleType roundAsCircle roundBottomEnd roundBottomLeft roundBottomRight roundBottomStart roundTopEnd roundTopLeft roundTopRight roundTopStart roundWithOverlayColor roundedCornerRadius roundingBorderColor roundingBorderPadding roundingBorderWidth viewAspectRatio
|
|
@@ -2110,6 +4781,7 @@ styleable GradientColor android_centerColor android_centerX android_centerY andr
|
|
|
2110
4781
|
styleable GradientColorItem android_color android_offset
|
|
2111
4782
|
styleable ImageFilterView altSrc blendSrc brightness contrast crossfade imagePanX imagePanY imageRotate imageZoom overlay round roundPercent saturation warmth
|
|
2112
4783
|
styleable InAppMessageStyle inAppMessageBackground inAppMessageCancelButtonDrawable inAppMessageFontPath inAppMessageHeight inAppMessageTextColor inAppMessageTextSize inAppMessageTitleColor inAppMessageTitleSize inAppMessageWeight inAppMessageWidth
|
|
4784
|
+
styleable Insets paddingBottomSystemWindowInsets paddingLeftSystemWindowInsets paddingRightSystemWindowInsets paddingTopSystemWindowInsets
|
|
2113
4785
|
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 transformPivotTarget transitionEasing transitionPathRotate
|
|
2114
4786
|
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 wavePhase waveShape waveVariesBy
|
|
2115
4787
|
styleable KeyFrame
|
|
@@ -2118,47 +4790,90 @@ styleable KeyFramesVelocity
|
|
|
2118
4790
|
styleable KeyPosition curveFit drawPath framePosition keyPositionType motionTarget pathMotionArc percentHeight percentWidth percentX percentY sizePercent transitionEasing
|
|
2119
4791
|
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 wavePhase waveShape
|
|
2120
4792
|
styleable KeyTrigger framePosition motionTarget motion_postLayoutCollision motion_triggerOnCollision onCross onNegativeCross onPositiveCross triggerId triggerReceiver triggerSlack viewTransitionOnCross viewTransitionOnNegativeCross viewTransitionOnPositiveCross
|
|
2121
|
-
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 constraint_referenced_tags layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBaseline_toBottomOf layout_constraintBaseline_toTopOf 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 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 layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBaseline layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop layout_marginBaseline layout_wrapBehaviorInParent maxHeight maxWidth minHeight minWidth
|
|
4793
|
+
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 constraint_referenced_tags guidelineUseRtl layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBaseline_toBottomOf layout_constraintBaseline_toTopOf 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 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 layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBaseline layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop layout_marginBaseline layout_wrapBehaviorInParent maxHeight maxWidth minHeight minWidth
|
|
2122
4794
|
styleable LinearLayoutCompat android_baselineAligned android_baselineAlignedChildIndex android_gravity android_orientation android_weightSum divider dividerPadding measureWithLargestChild showDividers
|
|
2123
4795
|
styleable LinearLayoutCompat_Layout android_layout_gravity android_layout_height android_layout_weight android_layout_width
|
|
4796
|
+
styleable LinearProgressIndicator indeterminateAnimationType indicatorDirectionLinear
|
|
2124
4797
|
styleable ListPopupWindow android_dropDownHorizontalOffset android_dropDownVerticalOffset
|
|
2125
4798
|
styleable LoadingImageView circleCrop imageAspectRatio imageAspectRatioAdjust
|
|
4799
|
+
styleable MaterialAlertDialog backgroundInsetBottom backgroundInsetEnd backgroundInsetStart backgroundInsetTop
|
|
4800
|
+
styleable MaterialAlertDialogTheme materialAlertDialogBodyTextStyle materialAlertDialogButtonSpacerVisibility materialAlertDialogTheme materialAlertDialogTitleIconStyle materialAlertDialogTitlePanelStyle materialAlertDialogTitleTextStyle
|
|
4801
|
+
styleable MaterialAutoCompleteTextView android_inputType
|
|
4802
|
+
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
|
|
4803
|
+
styleable MaterialButtonToggleGroup checkedButton selectionRequired singleSelection
|
|
4804
|
+
styleable MaterialCalendar android_windowFullscreen dayInvalidStyle daySelectedStyle dayStyle dayTodayStyle nestedScrollable rangeFillColor yearSelectedStyle yearStyle yearTodayStyle
|
|
4805
|
+
styleable MaterialCalendarItem android_insetBottom android_insetLeft android_insetRight android_insetTop itemFillColor itemShapeAppearance itemShapeAppearanceOverlay itemStrokeColor itemStrokeWidth itemTextColor
|
|
4806
|
+
styleable MaterialCardView android_checkable cardForegroundColor checkedIcon checkedIconMargin checkedIconSize checkedIconTint rippleColor shapeAppearance shapeAppearanceOverlay state_dragged strokeColor strokeWidth
|
|
4807
|
+
styleable MaterialCheckBox buttonTint useMaterialThemeColors
|
|
4808
|
+
styleable MaterialDivider dividerColor dividerInsetEnd dividerInsetStart dividerThickness
|
|
4809
|
+
styleable MaterialRadioButton buttonTint useMaterialThemeColors
|
|
4810
|
+
styleable MaterialShape shapeAppearance shapeAppearanceOverlay
|
|
4811
|
+
styleable MaterialTextAppearance android_letterSpacing android_lineHeight lineHeight
|
|
4812
|
+
styleable MaterialTextView android_lineHeight android_textAppearance lineHeight
|
|
4813
|
+
styleable MaterialTimePicker clockIcon keyboardIcon
|
|
4814
|
+
styleable MaterialToolbar navigationIconTint subtitleCentered titleCentered
|
|
2126
4815
|
styleable MenuGroup android_checkableBehavior android_enabled android_id android_menuCategory android_orderInCategory android_visible
|
|
2127
4816
|
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
|
|
2128
4817
|
styleable MenuView android_headerBackground android_horizontalDivider android_itemBackground android_itemIconDisabledAlpha android_itemTextAppearance android_verticalDivider android_windowAnimationStyle preserveIconSpacing subMenuArrow
|
|
2129
4818
|
styleable MockView mock_diagonalsColor mock_label mock_labelBackgroundColor mock_labelColor mock_showDiagonals mock_showLabel
|
|
2130
|
-
styleable Motion animateCircleAngleTo animateRelativeTo drawPath motionPathRotate motionStagger pathMotionArc quantizeMotionInterpolator quantizeMotionPhase quantizeMotionSteps transitionEasing
|
|
4819
|
+
styleable Motion animateCircleAngleTo animateRelativeTo animate_relativeTo drawPath motionPathRotate motionStagger pathMotionArc quantizeMotionInterpolator quantizeMotionPhase quantizeMotionSteps transitionEasing
|
|
2131
4820
|
styleable MotionEffect motionEffect_alpha motionEffect_end motionEffect_move motionEffect_start motionEffect_strict motionEffect_translationX motionEffect_translationY motionEffect_viewTransition
|
|
2132
4821
|
styleable MotionHelper onHide onShow
|
|
2133
4822
|
styleable MotionLabel android_autoSizeTextType android_fontFamily android_gravity android_shadowRadius android_text android_textColor android_textSize android_textStyle android_typeface borderRound borderRoundPercent scaleFromTextSize textBackground textBackgroundPanX textBackgroundPanY textBackgroundRotate textBackgroundZoom textOutlineColor textOutlineThickness textPanX textPanY textureBlurFactor textureEffect textureHeight textureWidth
|
|
2134
4823
|
styleable MotionLayout applyMotionScene currentState layoutDescription motionDebug motionProgress showPaths
|
|
2135
4824
|
styleable MotionScene defaultDuration layoutDuringTransition
|
|
2136
4825
|
styleable MotionTelltales telltales_tailColor telltales_tailScale telltales_velocityMode
|
|
4826
|
+
styleable NavigationBarActiveIndicator android_color android_height android_width marginHorizontal shapeAppearance
|
|
4827
|
+
styleable NavigationBarView backgroundTint elevation itemActiveIndicatorStyle itemBackground itemIconSize itemIconTint itemPaddingBottom itemPaddingTop itemRippleColor itemTextAppearanceActive itemTextAppearanceInactive itemTextColor labelVisibilityMode menu
|
|
4828
|
+
styleable NavigationRailView headerLayout itemMinHeight menuGravity
|
|
4829
|
+
styleable NavigationView android_background android_fitsSystemWindows android_layout_gravity android_maxWidth bottomInsetScrimEnabled dividerInsetEnd dividerInsetStart drawerLayoutCornerSize elevation headerLayout itemBackground itemHorizontalPadding itemIconPadding itemIconSize itemIconTint itemMaxLines itemShapeAppearance itemShapeAppearanceOverlay itemShapeFillColor itemShapeInsetBottom itemShapeInsetEnd itemShapeInsetStart itemShapeInsetTop itemTextAppearance itemTextColor itemVerticalPadding menu shapeAppearance shapeAppearanceOverlay subheaderColor subheaderInsetEnd subheaderInsetStart subheaderTextAppearance topInsetScrimEnabled
|
|
2137
4830
|
styleable OnClick clickAction targetId
|
|
2138
4831
|
styleable OnSwipe autoCompleteMode dragDirection dragScale dragThreshold limitBoundsTo maxAcceleration maxVelocity moveWhenScrollAtTop nestedScrollFlags onTouchUp rotationCenterId springBoundary springDamping springMass springStiffness springStopThreshold touchAnchorId touchAnchorSide touchRegionId
|
|
2139
4832
|
styleable PopupWindow android_popupAnimationStyle android_popupBackground overlapAnchor
|
|
2140
4833
|
styleable PopupWindowBackgroundState state_above_anchor
|
|
2141
4834
|
styleable PropertySet android_alpha android_visibility layout_constraintTag motionProgress visibilityMode
|
|
4835
|
+
styleable RadialViewGroup materialCircleRadius
|
|
4836
|
+
styleable RangeSlider minSeparation values
|
|
2142
4837
|
styleable RecycleListView paddingBottomNoButtons paddingTopNoTitle
|
|
2143
4838
|
styleable RecyclerView android_clipToPadding android_descendantFocusability android_orientation fastScrollEnabled fastScrollHorizontalThumbDrawable fastScrollHorizontalTrackDrawable fastScrollVerticalThumbDrawable fastScrollVerticalTrackDrawable layoutManager reverseLayout spanCount stackFromEnd
|
|
4839
|
+
styleable ScrimInsetsFrameLayout insetForeground
|
|
4840
|
+
styleable ScrollingViewBehavior_Layout behavior_overlapTop
|
|
2144
4841
|
styleable SearchView android_focusable android_imeOptions android_inputType android_maxWidth closeIcon commitIcon defaultQueryHint goIcon iconifiedByDefault layout queryBackground queryHint searchHintIcon searchIcon submitBackground suggestionRowLayout voiceIcon
|
|
4842
|
+
styleable ShapeAppearance cornerFamily cornerFamilyBottomLeft cornerFamilyBottomRight cornerFamilyTopLeft cornerFamilyTopRight cornerSize cornerSizeBottomLeft cornerSizeBottomRight cornerSizeTopLeft cornerSizeTopRight
|
|
4843
|
+
styleable ShapeableImageView contentPadding contentPaddingBottom contentPaddingEnd contentPaddingLeft contentPaddingRight contentPaddingStart contentPaddingTop shapeAppearance shapeAppearanceOverlay strokeColor strokeWidth
|
|
2145
4844
|
styleable SignInButton buttonSize colorScheme scopeUris
|
|
2146
4845
|
styleable SimpleDraweeView actualImageResource actualImageScaleType actualImageUri backgroundImage fadeDuration failureImage failureImageScaleType overlayImage placeholderImage placeholderImageScaleType pressedStateOverlayImage progressBarAutoRotateInterval progressBarImage progressBarImageScaleType retryImage retryImageScaleType roundAsCircle roundBottomEnd roundBottomLeft roundBottomRight roundBottomStart roundTopEnd roundTopLeft roundTopRight roundTopStart roundWithOverlayColor roundedCornerRadius roundingBorderColor roundingBorderPadding roundingBorderWidth viewAspectRatio
|
|
4846
|
+
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
|
|
4847
|
+
styleable Snackbar snackbarButtonStyle snackbarStyle snackbarTextViewStyle
|
|
4848
|
+
styleable SnackbarLayout actionTextColorAlpha android_maxWidth animationMode backgroundOverlayColorAlpha backgroundTint backgroundTintMode elevation maxActionInlineWidth
|
|
2147
4849
|
styleable Spinner android_dropDownWidth android_entries android_popupBackground android_prompt popupTheme
|
|
2148
4850
|
styleable State android_id constraints
|
|
2149
4851
|
styleable StateListDrawable android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible
|
|
2150
4852
|
styleable StateListDrawableItem android_drawable
|
|
2151
4853
|
styleable StateSet defaultState
|
|
2152
4854
|
styleable SwitchCompat android_textOff android_textOn android_thumb showText splitTrack switchMinWidth switchPadding switchTextAppearance thumbTextPadding thumbTint thumbTintMode track trackTint trackTintMode
|
|
4855
|
+
styleable SwitchMaterial useMaterialThemeColors
|
|
4856
|
+
styleable TabItem android_icon android_layout android_text
|
|
4857
|
+
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
|
|
2153
4858
|
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
|
|
2154
4859
|
styleable TextEffects android_fontFamily android_shadowColor android_shadowDx android_shadowDy android_shadowRadius android_text android_textSize android_textStyle android_typeface borderRound borderRoundPercent textFillColor textOutlineColor textOutlineThickness
|
|
4860
|
+
styleable TextInputEditText textInputLayoutFocusedRectEnabled
|
|
4861
|
+
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
|
|
4862
|
+
styleable ThemeEnforcement android_textAppearance enforceMaterialTheme enforceTextAppearance
|
|
2155
4863
|
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
|
|
4864
|
+
styleable Tooltip android_layout_margin android_minHeight android_minWidth android_padding android_text android_textAppearance android_textColor backgroundTint
|
|
2156
4865
|
styleable Transform android_elevation android_rotation android_rotationX android_rotationY android_scaleX android_scaleY android_transformPivotX android_transformPivotY android_translationX android_translationY android_translationZ transformPivotTarget
|
|
2157
4866
|
styleable Transition android_id autoTransition constraintSetEnd constraintSetStart duration layoutDuringTransition motionInterpolator pathMotionArc staggered transitionDisable transitionFlags
|
|
2158
4867
|
styleable Variant constraints region_heightLessThan region_heightMoreThan region_widthLessThan region_widthMoreThan
|
|
2159
4868
|
styleable View android_focusable android_theme paddingEnd paddingStart theme
|
|
2160
4869
|
styleable ViewBackgroundHelper android_background backgroundTint backgroundTintMode
|
|
4870
|
+
styleable ViewPager2 android_orientation
|
|
2161
4871
|
styleable ViewStubCompat android_id android_inflatedId android_layout
|
|
2162
4872
|
styleable ViewTransition SharedValue SharedValueId android_id clearsTag duration ifTagNotSet ifTagSet motionInterpolator motionTarget onStateTransition pathMotionArc setsTag transitionDisable upDuration viewTransitionMode
|
|
2163
4873
|
styleable include constraintSet
|
|
2164
4874
|
xml rn_dev_preferences
|
|
4875
|
+
xml standalone_badge
|
|
4876
|
+
xml standalone_badge_gravity_bottom_end
|
|
4877
|
+
xml standalone_badge_gravity_bottom_start
|
|
4878
|
+
xml standalone_badge_gravity_top_start
|
|
4879
|
+
xml standalone_badge_offset
|