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

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

Issue 2270283003: [Remoting Android] Explicitly define title text size in sp (Closed)
Patch Set: Created 4 years, 4 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 2
3 <!-- Copyright 2014 The Chromium Authors. All rights reserved. 3 <!-- Copyright 2014 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. 5 found in the LICENSE file.
6 --> 6 -->
7 7
8 <resources> 8 <resources>
9 <style name="BaseTheme" parent="@style/Theme.AppCompat.Light.NoActionBar"> 9 <style name="BaseTheme" parent="@style/Theme.AppCompat.Light.NoActionBar">
10 <item name="colorPrimary">#E0E0E0</item> 10 <item name="colorPrimary">#E0E0E0</item>
(...skipping 28 matching lines...) Expand all
39 <style name="NavigationTextStyle"> 39 <style name="NavigationTextStyle">
40 <item name="android:textColor">#212121</item> 40 <item name="android:textColor">#212121</item>
41 <item name="android:fontFamily">sans-serif-medium</item> 41 <item name="android:fontFamily">sans-serif-medium</item>
42 </style> 42 </style>
43 43
44 <style name="ToolbarStyle"> 44 <style name="ToolbarStyle">
45 <item name="android:background">?attr/colorPrimary</item> 45 <item name="android:background">?attr/colorPrimary</item>
46 <!--suppress NewApi --> 46 <!--suppress NewApi -->
47 <item name="android:elevation">4dp</item> 47 <item name="android:elevation">4dp</item>
48 <item name="contentInsetStart">@dimen/toolbar_content_inset_start</item> 48 <item name="contentInsetStart">@dimen/toolbar_content_inset_start</item>
49 <item name="titleTextAppearance">@style/ToolbarStyle.Title</item>
50 </style>
51
52 <style name="ToolbarStyle.Title" parent="TextAppearance.Widget.AppCompat.Too lbar.Title">
53 <item name="android:textSize">20sp</item>
49 </style> 54 </style>
50 </resources> 55 </resources>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698