1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2014 The Android Open Source Project
3
4     Licensed under the Apache License, Version 2.0 (the "License");
5     you may not use this file except in compliance with the License.
6     You may obtain a copy of the License at
7
8          http://www.apache.org/licenses/LICENSE-2.0
9
10     Unless required by applicable law or agreed to in writing, software
11     distributed under the License is distributed on an "AS IS" BASIS,
12     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13     See the License for the specific language governing permissions and
14     limitations under the License.
15-->
16
17<!-- Text field and possibly soft menu button above the keypad where
18     the digits are displayed. -->
19
20<TextView
21    xmlns:android="http://schemas.android.com/apk/res/android"
22    android:id="@+id/recents_list_footer"
23    android:layout_width="match_parent"
24    android:layout_height="wrap_content"
25    android:paddingTop="20dp"
26    android:paddingBottom="20dp"
27    android:gravity="center"
28    android:fontFamily="@string/view_full_call_history_font_family"
29    android:textStyle="bold"
30    android:textColor="@color/dialtacts_secondary_text_color"
31    android:textSize="14sp"
32    android:text="@string/recents_footer_text"
33    android:background="@drawable/recent_lists_footer_background" />
34