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

Unified Diff: chrome/android/java/res/layout/tile_view.xml

Issue 2720863004: 📰 Draw the tile highlight below the offline badge (Closed)
Patch Set: Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/android/java/res/layout/tile_view.xml
diff --git a/chrome/android/java/res/layout/tile_view.xml b/chrome/android/java/res/layout/tile_view.xml
index 2dbcc1104c4d7b5c3a41a7c413084115ccf1565c..fb68c313f06ad7f4ef099a9c0a7dc08f2594f62f 100644
--- a/chrome/android/java/res/layout/tile_view.xml
+++ b/chrome/android/java/res/layout/tile_view.xml
@@ -21,6 +21,15 @@
android:layout_marginTop="@dimen/tile_view_icon_margin_top"
android:contentDescription="@null" />
+ <!-- The touch highlight. -->
+ <View
+ android:id="@+id/tile_view_highlight"
+ android:layout_width="@dimen/tile_view_icon_size"
+ android:layout_height="@dimen/tile_view_icon_size"
+ android:layout_gravity="center_horizontal"
+ android:layout_marginTop="@dimen/tile_view_icon_margin_top"
+ android:background="@drawable/tile_view_highlight" />
+
<!-- The offline badge. -->
<org.chromium.chrome.browser.widget.TintedImageView
android:id="@+id/offline_badge"
@@ -33,15 +42,6 @@
chrome:tint="@color/tile_view_offline_badge_tint"
android:src="@drawable/offline_pin_round" />
- <!-- The touch highlight. -->
- <View
- android:id="@+id/tile_view_highlight"
- android:layout_width="@dimen/tile_view_icon_size"
- android:layout_height="@dimen/tile_view_icon_size"
- android:layout_gravity="center_horizontal"
- android:layout_marginTop="@dimen/tile_view_icon_margin_top"
- android:background="@drawable/tile_view_highlight" />
-
<!-- The title. -->
<TextView
android:id="@+id/tile_view_title"
« 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