blob: d890bcfff64744704873df5cf3526003c82fa001 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2014 Google Inc.
Licensed to The Android Open Source Project.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!-- Item in the drawer that launches the Help or Feedback activities. -->
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/footer_background_color">
<LinearLayout
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:paddingLeft="@dimen/drawer_footer_item_padding"
android:paddingRight="@dimen/drawer_footer_item_padding"
android:minHeight="@dimen/drawer_footer_item_minimum_height"
android:gravity="center_vertical"
android:background="@drawable/nonfolder_item">
<ImageView
android:id="@+id/drawer_footer_image"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/drawer_footer_text"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:ellipsize="end"
android:textColor="@color/dark_gray_text_color"
android:textAllCaps="true"
android:textAppearance="?android:attr/textAppearanceSmall"
style="@style/DrawerFooterListItemStyle"/>
</LinearLayout>
<!-- This top "border" is deliberately inset into the item to prevent it from interfering -->
<!-- visually with its floaty counterpart. This is also why it isn't just its own list item. -->
<View
android:id="@+id/top_border"
android:layout_width="match_parent"
android:layout_height="2dp"
android:background="@color/separator_color"
android:visibility="gone" />
</FrameLayout>