Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(221)

Side by Side Diff: chrome/android/java/res/values-v17/styles.xml

Issue 1159113006: [Android] A prototype of the interactive media notification. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Moved OnMediaSessionStateChanged to WebContentsImpl Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2014 The Chromium Authors. All rights reserved. 2 <!-- Copyright 2014 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. --> 4 found in the LICENSE file. -->
5 5
6 <resources xmlns:tools="http://schemas.android.com/tools"> 6 <resources xmlns:tools="http://schemas.android.com/tools">
7 <!-- Q: Why put style resources under values-v17/ ? 7 <!-- Q: Why put style resources under values-v17/ ?
8 A: Problem: 8 A: Problem:
9 1. paddingStart causes a crash on Galaxy Tab&Note b/8351339. 9 1. paddingStart causes a crash on Galaxy Tab&Note b/8351339.
10 2. So we wrote a build script(generate_v14_compatible_resources.py) to convert 10 2. So we wrote a build script(generate_v14_compatible_resources.py) to convert
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
268 <item name="android:windowAnimationStyle">@null</item> 268 <item name="android:windowAnimationStyle">@null</item>
269 <item name="android:windowBackground">@android:color/transparent</item> 269 <item name="android:windowBackground">@android:color/transparent</item>
270 <item name="android:windowCloseOnTouchOutside">false</item> 270 <item name="android:windowCloseOnTouchOutside">false</item>
271 <item name="android:windowContentOverlay">@null</item> 271 <item name="android:windowContentOverlay">@null</item>
272 <item name="android:windowFrame">@null</item> 272 <item name="android:windowFrame">@null</item>
273 <item name="android:windowFullscreen">false</item> 273 <item name="android:windowFullscreen">false</item>
274 <item name="android:windowIsFloating">true</item> 274 <item name="android:windowIsFloating">true</item>
275 <item name="android:windowIsTranslucent">true</item> 275 <item name="android:windowIsTranslucent">true</item>
276 <item name="android:windowNoTitle">true</item> 276 <item name="android:windowNoTitle">true</item>
277 </style> 277 </style>
278 <!-- Cast --> 278 <!-- Cast and media playback notifications -->
279 <style
280 name="MediaNotificationTitle"
281 parent="@android:style/TextAppearance.StatusBar.EventContent.Title"/>
282 <style
283 name="MediaNotificationText"
284 parent="@android:style/TextAppearance.StatusBar.EventContent"/>
279 <style 285 <style
280 name="RemoteNotificationTitle" 286 name="RemoteNotificationTitle"
281 parent="@android:style/TextAppearance.StatusBar.EventContent.Title"/> 287 parent="@android:style/TextAppearance.StatusBar.EventContent.Title"/>
282 <style 288 <style
283 name="RemoteNotificationText" 289 name="RemoteNotificationText"
284 parent="@android:style/TextAppearance.StatusBar.EventContent"/> 290 parent="@android:style/TextAppearance.StatusBar.EventContent"/>
285 <style 291 <style
286 name="RemoteNotificationProgressBar" 292 name="RemoteNotificationProgressBar"
287 parent="@android:style/Widget.Holo.ProgressBar.Horizontal"/> 293 parent="@android:style/Widget.Holo.ProgressBar.Horizontal"/>
288 <style name="CastMediaRouteButton" parent="@style/Widget.MediaRouter.MediaRo uteButton"> 294 <style name="CastMediaRouteButton" parent="@style/Widget.MediaRouter.MediaRo uteButton">
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
384 <style name="LocationBarButton"> 390 <style name="LocationBarButton">
385 <item name="android:background">@null</item> 391 <item name="android:background">@null</item>
386 </style> 392 </style>
387 <style name="ToolbarButton"> 393 <style name="ToolbarButton">
388 <item name="android:background">?attr/selectableItemBackground</item> 394 <item name="android:background">?attr/selectableItemBackground</item>
389 <item name="android:layout_width">48dp</item> 395 <item name="android:layout_width">48dp</item>
390 <item name="android:layout_height">56dp</item> 396 <item name="android:layout_height">56dp</item>
391 <item name="android:scaleType">center</item> 397 <item name="android:scaleType">center</item>
392 </style> 398 </style>
393 </resources> 399 </resources>
OLDNEW
« no previous file with comments | « chrome/android/java/res/layout/playback_notification_bar.xml ('k') | chrome/android/java/res/values-v21/styles.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698