summaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorTony Mantler <nicoya@google.com>2014-08-11 14:15:08 -0700
committerTony Mantler <nicoya@google.com>2014-08-11 14:15:08 -0700
commit17170ea988d80053698ec8b27be50c301072c29e (patch)
tree3794a833ad8c404544df1937ba7a216e5311e689 /res
parentc013991008a8d7baf4ae40103c150b99f0a102e8 (diff)
downloadandroid_packages_apps_UnifiedEmail-17170ea988d80053698ec8b27be50c301072c29e.tar.gz
android_packages_apps_UnifiedEmail-17170ea988d80053698ec8b27be50c301072c29e.tar.bz2
android_packages_apps_UnifiedEmail-17170ea988d80053698ec8b27be50c301072c29e.zip
Give the blank header a divider line
Technically this adds a divider line when we're using the L account switcher too, but in practice it's nearly invisible. b/16818617 Change-Id: Ia534e0efffdb976697767ae01fd3ec88b24ec47a
Diffstat (limited to 'res')
-rw-r--r--res/layout/folder_list_blank_header.xml13
1 files changed, 9 insertions, 4 deletions
diff --git a/res/layout/folder_list_blank_header.xml b/res/layout/folder_list_blank_header.xml
index ec255ebec..89d15d10d 100644
--- a/res/layout/folder_list_blank_header.xml
+++ b/res/layout/folder_list_blank_header.xml
@@ -15,7 +15,12 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
-
-<Space xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="8dp" />
+<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_height="wrap_content"
+ android:layout_width="match_parent">
+ <View
+ android:layout_width="match_parent"
+ android:layout_height="@dimen/divider_height"
+ android:layout_marginBottom="8dp"
+ android:background="@color/divider_color" />
+</FrameLayout>