Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.25 KB | None | 0 0
  1. <?xml version="1.0" encoding='utf-8' standalone='no'?>
  2. <resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
  3. <!-- java/com/google/android/gmscore/integ/client/admob-impl/res/values/strings.xml -->
  4. <eat-comment/>
  5. <string name="s1">Save image</string>
  6. <string name="s2">"Allow Ad to store image in Picture gallery?"</string>
  7. <string name="s3">Accept</string>
  8. <string name="s4">Decline</string>
  9. <string name="s5">Create calendar event</string>
  10. <string name="s6">Allow Ad to create a calendar event?</string>
  11. <string name="s7">Test Ad</string>
  12. <!-- java/com/google/android/gmscore/integ/client/admob/res/values/iap_style.xml -->
  13. <eat-comment/>
  14. <style name="Theme.IAPTheme" parent="android:Theme">
  15. <item name="android:windowIsFloating">true</item>
  16. <item name="android:windowBackground">@android:color/transparent</item>
  17. <item name="android:windowContentOverlay">@null</item>
  18. <item name="android:windowNoTitle">true</item>
  19. <item name="android:backgroundDimEnabled">false</item>
  20. <item name="android:windowIsTranslucent">true</item>
  21. </style>
  22. <!-- java/com/google/android/gmscore/integ/client/admob/res/values/ads_attrs.xml -->
  23. <eat-comment/>
  24. <declare-styleable name="AdsAttrs">
  25. <attr name="adSize" format="string"/>
  26.  
  27. <attr name="adSizes" format="string"/>
  28.  
  29. <attr name="adUnitId" format="string"/>
  30. </declare-styleable>
  31. <!-- blaze-out/k8-opt/genfiles/java/com/google/android/gmscore/integ/res/values/gmscore_version.xml -->
  32. <eat-comment/>
  33. <integer name="google_play_services_version">12451000</integer>
  34. <!-- java/com/google/android/gmscore/integ/client/common/res/values/strings.xml -->
  35. <eat-comment/>
  36. <string name="common_google_play_services_unknown_issue"><xliff:g id="app_name">%1$s</xliff:g> is having trouble with Google Play services. Please try again.</string>
  37. <color name="notification_action_color_filter">#ffffffff</color>
  38. <color name="notification_icon_bg_color">#ff9e9e9e</color>
  39. <color name="ripple_material_light">#1f000000</color>
  40. <color name="secondary_text_default_material_light">#8a000000</color>
  41. <declare-styleable name="ColorStateListItem">
  42. <!-- Base color for this state. -->
  43. <attr name="android:color"/>
  44. <!-- Alpha multiplier applied to the base color. -->
  45. <attr format="float" name="alpha"/>
  46. <attr name="android:alpha"/>
  47. </declare-styleable>
  48. <declare-styleable name="FontFamily">
  49. <!-- The authority of the Font Provider to be used for the request. -->
  50. <attr format="string" name="fontProviderAuthority"/>
  51. <!-- The package for the Font Provider to be used for the request. This is used to verify
  52. the identity of the provider. -->
  53. <attr format="string" name="fontProviderPackage"/>
  54. <!-- The query to be sent over to the provider. Refer to your font provider's documentation
  55. on the format of this string. -->
  56. <attr format="string" name="fontProviderQuery"/>
  57. <!-- The sets of hashes for the certificates the provider should be signed with. This is
  58. used to verify the identity of the provider, and is only required if the provider is not
  59. part of the system image. This value may point to one list or a list of lists, where each
  60. individual list represents one collection of signature hashes. Refer to your font provider's
  61. documentation for these values. -->
  62. <attr format="reference" name="fontProviderCerts"/>
  63. <!-- The strategy to be used when fetching font data from a font provider in XML layouts.
  64. This attribute is ignored when the resource is loaded from code, as it is equivalent to the
  65. choice of API between {@link
  66. androidx.core.content.res.ResourcesCompat#getFont(Context, int)} (blocking) and
  67. {@link
  68. androidx.core.content.res.ResourcesCompat#getFont(Context, int, FontCallback, Handler)}
  69. (async). -->
  70. <attr name="fontProviderFetchStrategy">
  71. <!-- The blocking font fetch works as follows.
  72. First, check the local cache, then if the requested font is not cached, request the
  73. font from the provider and wait until it is finished. You can change the length of
  74. the timeout by modifying fontProviderFetchTimeout. If the timeout happens, the
  75. default typeface will be used instead. -->
  76. <enum name="blocking" value="0"/>
  77. <!-- The async font fetch works as follows.
  78. First, check the local cache, then if the requeted font is not cached, trigger a
  79. request the font and continue with layout inflation. Once the font fetch succeeds, the
  80. target text view will be refreshed with the downloaded font data. The
  81. fontProviderFetchTimeout will be ignored if async loading is specified. -->
  82. <enum name="async" value="1"/>
  83. </attr>
  84. <!-- The length of the timeout during fetching. -->
  85. <attr format="integer" name="fontProviderFetchTimeout">
  86. <!-- A special value for the timeout. In this case, the blocking font fetching will not
  87. timeout and wait until a reply is received from the font provider. -->
  88. <enum name="forever" value="-1"/>
  89. </attr>
  90. </declare-styleable>
  91. <declare-styleable name="FontFamilyFont">
  92. <!-- The style of the given font file. This will be used when the font is being loaded into
  93. the font stack and will override any style information in the font's header tables. If
  94. unspecified, the value in the font's header tables will be used. -->
  95. <attr name="fontStyle">
  96. <enum name="normal" value="0"/>
  97. <enum name="italic" value="1"/>
  98. </attr>
  99. <!-- The reference to the font file to be used. This should be a file in the res/font folder
  100. and should therefore have an R reference value. E.g. @font/myfont -->
  101. <attr format="reference" name="font"/>
  102. <!-- The weight of the given font file. This will be used when the font is being loaded into
  103. the font stack and will override any weight information in the font's header tables. Must
  104. be a positive number, a multiple of 100, and between 100 and 900, inclusive. The most
  105. common values are 400 for regular weight and 700 for bold weight. If unspecified, the value
  106. in the font's header tables will be used. -->
  107. <attr format="integer" name="fontWeight"/>
  108. <!-- The variation settings to be applied to the font. The string should be in the following
  109. format: "'tag1' value1, 'tag2' value2, ...". If the default variation settings should be
  110. used, or the font used does not support variation settings, this attribute needs not be
  111. specified. -->
  112. <attr format="string" name="fontVariationSettings"/>
  113. <!-- The index of the font in the tcc font file. If the font file referenced is not in the
  114. tcc format, this attribute needs not be specified. -->
  115. <attr format="integer" name="ttcIndex"/>
  116.  
  117. <!-- References to the framework attrs -->
  118. <attr name="android:fontStyle"/>
  119. <attr name="android:font"/>
  120. <attr name="android:fontWeight"/>
  121. <attr name="android:fontVariationSettings"/>
  122. <attr name="android:ttcIndex"/>
  123. </declare-styleable>
  124. <declare-styleable name="GradientColor">
  125. <!-- Start color of the gradient. -->
  126. <attr name="android:startColor"/>
  127. <!-- Optional center color. -->
  128. <attr name="android:centerColor"/>
  129. <!-- End color of the gradient. -->
  130. <attr name="android:endColor"/>
  131. <!-- Type of gradient. The default type is linear. -->
  132. <attr name="android:type"/>
  133.  
  134. <!-- Only applied to RadialGradient-->
  135. <!-- Radius of the gradient, used only with radial gradient. -->
  136. <attr name="android:gradientRadius"/>
  137.  
  138. <!-- Only applied to SweepGradient / RadialGradient-->
  139. <!-- X coordinate of the center of the gradient within the path. -->
  140. <attr name="android:centerX"/>
  141. <!-- Y coordinate of the center of the gradient within the path. -->
  142. <attr name="android:centerY"/>
  143.  
  144. <!-- LinearGradient specific -->
  145. <!-- X coordinate of the start point origin of the gradient.
  146. Defined in same coordinates as the path itself -->
  147. <attr name="android:startX"/>
  148. <!-- Y coordinate of the start point of the gradient within the shape.
  149. Defined in same coordinates as the path itself -->
  150. <attr name="android:startY"/>
  151. <!-- X coordinate of the end point origin of the gradient.
  152. Defined in same coordinates as the path itself -->
  153. <attr name="android:endX"/>
  154. <!-- Y coordinate of the end point of the gradient within the shape.
  155. Defined in same coordinates as the path itself -->
  156. <attr name="android:endY"/>
  157.  
  158. <!-- Defines the tile mode of the gradient. SweepGradient doesn't support tiling. -->
  159. <attr name="android:tileMode"/>
  160. </declare-styleable>
  161. <declare-styleable name="GradientColorItem">
  162. <!-- The offset (or ratio) of this current color item inside the gradient.
  163. The value is only meaningful when it is between 0 and 1. -->
  164. <attr name="android:offset"/>
  165. <!-- The current color for the offset inside the gradient. -->
  166. <attr name="android:color"/>
  167. </declare-styleable>
  168. <dimen name="compat_button_inset_horizontal_material">4dp</dimen>
  169. <dimen name="compat_button_inset_vertical_material">6dp</dimen>
  170. <dimen name="compat_button_padding_horizontal_material">8dp</dimen>
  171. <dimen name="compat_button_padding_vertical_material">4dp</dimen>
  172. <dimen name="compat_control_corner_material">2dp</dimen>
  173. <dimen name="compat_notification_large_icon_max_height">320dp</dimen>
  174. <dimen name="compat_notification_large_icon_max_width">320dp</dimen>
  175. <dimen name="notification_action_icon_size">32dp</dimen>
  176. <dimen name="notification_action_text_size">13sp</dimen>
  177. <dimen name="notification_big_circle_margin">12dp</dimen>
  178. <dimen name="notification_content_margin_start">8dp</dimen>
  179. <dimen name="notification_large_icon_height">64dp</dimen>
  180. <dimen name="notification_large_icon_width">64dp</dimen>
  181. <dimen name="notification_main_column_padding_top">10dp</dimen>
  182. <dimen name="notification_media_narrow_margin">@dimen/notification_content_margin_start</dimen>
  183. <dimen name="notification_right_icon_size">16dp</dimen>
  184. <dimen name="notification_right_side_padding_top">2dp</dimen>
  185. <dimen name="notification_small_icon_background_padding">3dp</dimen>
  186. <dimen name="notification_small_icon_size_as_large">24dp</dimen>
  187. <dimen name="notification_subtext_size">13sp</dimen>
  188. <dimen name="notification_top_pad">10dp</dimen>
  189. <dimen name="notification_top_pad_large_text">5dp</dimen>
  190. <drawable name="notification_template_icon_bg">#3333B5E5</drawable>
  191. <drawable name="notification_template_icon_low_bg">#0cffffff</drawable>
  192. <item name="line1" type="id"/>
  193. <item name="line3" type="id"/>
  194. <item name="tag_transition_group" type="id"/>
  195. <item name="tag_unhandled_key_event_manager" type="id"/>
  196. <item name="tag_unhandled_key_listeners" type="id"/>
  197. <item name="text" type="id"/>
  198. <item name="text2" type="id"/>
  199. <item name="title" type="id"/>
  200. <integer name="status_bar_notification_info_maxnum">999</integer>
  201. <string name="status_bar_notification_info_overflow">999+</string>
  202. <style name="TextAppearance.Compat.Notification" parent="@android:style/TextAppearance.StatusBar.EventContent"/>
  203. <style name="TextAppearance.Compat.Notification.Info">
  204. <item name="android:textSize">12sp</item>
  205. <item name="android:textColor">?android:attr/textColorSecondary</item>
  206. </style>
  207. <style name="TextAppearance.Compat.Notification.Line2" parent="TextAppearance.Compat.Notification.Info"/>
  208. <style name="TextAppearance.Compat.Notification.Time">
  209. <item name="android:textSize">12sp</item>
  210. <item name="android:textColor">?android:attr/textColorSecondary</item>
  211. </style>
  212. <style name="TextAppearance.Compat.Notification.Title" parent="@android:style/TextAppearance.StatusBar.EventContent.Title"/>
  213. <style name="Widget.Compat.NotificationActionContainer" parent=""/>
  214. <style name="Widget.Compat.NotificationActionText" parent=""/>
  215. <color name="notification_material_background_media_default_color">#ff424242</color>
  216. <color name="primary_text_default_material_dark">#ffffffff</color>
  217. <color name="secondary_text_default_material_dark">#b3ffffff</color>
  218. <dimen name="subtitle_corner_radius">2dp</dimen>
  219. <dimen name="subtitle_outline_width">2dp</dimen>
  220. <dimen name="subtitle_shadow_offset">2dp</dimen>
  221. <dimen name="subtitle_shadow_radius">2dp</dimen>
  222. <integer name="cancel_button_image_alpha">127</integer>
  223. <style name="TextAppearance.Compat.Notification.Info.Media"/>
  224. <style name="TextAppearance.Compat.Notification.Line2.Media" parent="TextAppearance.Compat.Notification.Info.Media"/>
  225. <style name="TextAppearance.Compat.Notification.Media"/>
  226. <style name="TextAppearance.Compat.Notification.Time.Media"/>
  227. <style name="TextAppearance.Compat.Notification.Title.Media"/>
  228. </resources>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement