OLD | NEW |
(Empty) | |
| 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 |
| 3 <!-- Copyright 2014 The Chromium Authors. All rights reserved. |
| 4 |
| 5 Use of this source code is governed by a BSD-style license that can be |
| 6 found in the LICENSE file. |
| 7 --> |
| 8 <layer-list xmlns:android="http://schemas.android.com/apk/res/android"> |
| 9 <!-- To achieve a single border along the bottom, draw a rectangle offset by |
| 10 1dp in all dimensions but the bottom. --> |
| 11 <item android:top="-1dp" android:right="-1dp" android:left="-1dp"> |
| 12 <shape android:shape="rectangle" > |
| 13 <stroke android:width="1dip" android:color="#e5e5e5"/> |
| 14 </shape> |
| 15 </item> |
| 16 <item><bitmap android:gravity="right" android:src="@drawable/page_info_arrow_d
own" /></item> |
| 17 |
| 18 </layer-list> |
OLD | NEW |