blob: 122ba32216a6d01187b03af6d2f17dd7f95b5978 [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. -->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:minHeight="@dimen/drawer_footer_item_minimum_height"
android:gravity="center_vertical">
<ImageView
android:id="@+id/drawer_footer_image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="@dimen/drawer_footer_item_padding"
android:paddingRight="@dimen/drawer_footer_item_padding" />
<TextView
android:id="@+id/drawer_footer_text"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:ellipsize="end"
android:paddingLeft="@dimen/drawer_footer_item_padding"
android:paddingRight="@dimen/drawer_footer_item_padding"
android:textColor="@color/text_color_black"
android:textSize="@dimen/drawer_item_font_size"
style="@style/DrawerFontStyle" />
</LinearLayout>