summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/searchfragment/list/res/layout/header_layout.xml
diff options
context:
space:
mode:
Diffstat (limited to 'java/com/android/dialer/searchfragment/list/res/layout/header_layout.xml')
-rw-r--r--java/com/android/dialer/searchfragment/list/res/layout/header_layout.xml20
1 files changed, 14 insertions, 6 deletions
diff --git a/java/com/android/dialer/searchfragment/list/res/layout/header_layout.xml b/java/com/android/dialer/searchfragment/list/res/layout/header_layout.xml
index eef0dee94..6eb1d2e40 100644
--- a/java/com/android/dialer/searchfragment/list/res/layout/header_layout.xml
+++ b/java/com/android/dialer/searchfragment/list/res/layout/header_layout.xml
@@ -14,10 +14,18 @@
~ See the License for the specific language governing permissions and
~ limitations under the License
-->
-<TextView xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/header"
+<FrameLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="8dp"
- android:paddingStart="16dp"
- style="@style/SecondaryText"/>
+ android:layout_height="48dp"
+ android:layout_marginStart="16dp"
+ android:layout_marginEnd="16dp"
+ android:layout_marginBottom="2dp">
+
+ <TextView
+ android:id="@+id/header"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center_vertical"
+ style="@style/SecondaryText"/>
+</FrameLayout>