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

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

Issue 2806273002: Make the Translate Overflow Menu using ListPopupWindow (Closed)
Patch Set: Created 3 years, 8 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
Index: chrome/android/java/res/layout/translate_menu_spinner_divider.xml
diff --git a/chrome/android/java/res/layout/translate_menu_spinner_divider.xml b/chrome/android/java/res/layout/translate_menu_spinner_divider.xml
new file mode 100644
index 0000000000000000000000000000000000000000..acc47210809e17799b77097790c22894308dd560
--- /dev/null
+++ b/chrome/android/java/res/layout/translate_menu_spinner_divider.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright 2015 The Chromium Authors. All rights reserved.
+ Use of this source code is governed by a BSD-style license that can be
+ found in the LICENSE file. -->
+
+<!-- Wrap a framelayout because android list view does not respect margins. -->
+<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="17dp" >
+
+ <View
+ android:layout_width="match_parent"
+ android:layout_height="1dp"
+ android:layout_gravity="center_vertical"
+ android:background="#ffD6D6D6" />
gone 2017/04/10 20:00:16 1) Where's this color defined in the mock? 2) New
Marti Wong 2017/04/11 14:46:18 Color added to colors.xml. thanks (according to t
+</FrameLayout>

Powered by Google App Engine
This is Rietveld 408576698