Chromium Code Reviews| 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> |