OLD | NEW |
(Empty) | |
| 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. |
| 3 Use of this source code is governed by a BSD-style license that can be |
| 4 found in the LICENSE file. --> |
| 5 |
| 6 <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| 7 android:layout_width="match_parent" |
| 8 android:layout_height="wrap_content" |
| 9 android:background="#f5f5f5" > |
| 10 <View |
| 11 android:layout_width="match_parent" |
| 12 android:layout_height="1dp" |
| 13 android:background="#e0e0e0" /> |
| 14 <TextView |
| 15 android:layout_width="match_parent" |
| 16 android:layout_height="@dimen/menu_footer_height" |
| 17 android:paddingTop="1dp" |
| 18 android:paddingStart="16dp" |
| 19 android:paddingEnd="16dp" |
| 20 android:gravity="start|center_vertical" |
| 21 android:textSize="12sp" |
| 22 android:textColor="#616161" |
| 23 android:text="@string/powered_by_chrome_message" |
| 24 android:maxLines="1" /> |
| 25 </FrameLayout> |
OLD | NEW |