summaryrefslogtreecommitdiffstats
path: root/res/layout/header_condensed.xml
diff options
context:
space:
mode:
Diffstat (limited to 'res/layout/header_condensed.xml')
-rw-r--r--res/layout/header_condensed.xml32
1 files changed, 25 insertions, 7 deletions
diff --git a/res/layout/header_condensed.xml b/res/layout/header_condensed.xml
index 9319836..b507b08 100644
--- a/res/layout/header_condensed.xml
+++ b/res/layout/header_condensed.xml
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2015 The CyanogenMod Project
+ Copyright (C) 2017 The LineageOS Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
@@ -15,15 +16,32 @@
limitations under the License.
-->
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/header"
- android:layout_width="match_parent"
- android:layout_height="@dimen/header_condensed_height"
- android:background="@color/header_condensed_bg"
- style="@style/Header">
+ android:id="@+id/header"
+ android:layout_width="match_parent"
+ android:layout_height="@dimen/header_condensed_height"
+ android:paddingTop="48dp"
+ android:orientation="vertical">
+
+ <ImageView
+ android:id="@+id/header_icon"
+ android:layout_width="64dp"
+ android:layout_height="wrap_content"
+ android:paddingStart="8dp"
+ android:paddingEnd="8dp"
+ android:adjustViewBounds="true"
+ android:scaleType="centerInside"
+ android:visibility="gone"
+ android:contentDescription="@null" />
<TextView
android:layout_width="match_parent"
- android:layout_height="@dimen/page_title_height"
+ android:layout_height="64dp"
+ android:layout_toEndOf="@id/header_icon"
+ android:paddingEnd="8dp"
+ android:typeface="monospace"
+ android:gravity="center_vertical"
+ android:maxLines="1"
+ android:ellipsize="end"
style="@style/PageTitle" />
-</RelativeLayout> \ No newline at end of file
+</RelativeLayout>