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

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

Issue 2917393002: VR: Hide 2D screenshot when resuming activities in VR and hide 2D UI while loading VR UI. (Closed)
Patch Set: Created 3 years, 6 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 712 matching lines...) Expand 10 before | Expand all | Expand 10 after
723 <item name="android:textAllCaps">true</item> 723 <item name="android:textAllCaps">true</item>
724 <item name="android:padding">16dp</item> 724 <item name="android:padding">16dp</item>
725 </style> 725 </style>
726 726
727 <!-- Photo Picker animations --> 727 <!-- Photo Picker animations -->
728 728
729 <style name="PhotoPickerDialogAnimation"> 729 <style name="PhotoPickerDialogAnimation">
730 <item name="android:windowEnterAnimation">@anim/design_bottom_sheet_slid e_in</item> 730 <item name="android:windowEnterAnimation">@anim/design_bottom_sheet_slid e_in</item>
731 <item name="android:windowExitAnimation">@null</item> 731 <item name="android:windowExitAnimation">@null</item>
732 </style> 732 </style>
733
734 <!-- VR animations -->
735 <style name="VrEntryAnimation">
736 <item name="android:windowEnterAnimation">@anim/stay_hidden</item>
737 <item name="android:windowExitAnimation">@null</item>
738 </style>
733 </resources> 739 </resources>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698