replicant-packages_apps_Email/res/layout/widget.xml
Todd Kennedy e63337e78b DO NOT MERGE: Update assets
Also tile the widget header.

bug 3500861

Change-Id: Ic8a6a0a8a83974f7c653d9c78450bada7947773a
Backport-Id: I4288c4dd0c71843e18ee370102c2112626a90f50
2011-03-07 16:21:43 -08:00

127 lines
5.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2010 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.
-->
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingTop="5dip"
android:paddingBottom="2dip"
android:layout_marginTop="6dip"
android:layout_marginBottom="17dip"
android:layout_marginLeft="12dip"
android:layout_marginRight="12dip"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="42sp"
android:layout_marginLeft="5dip"
android:layout_marginRight="5dip"
android:orientation="horizontal"
android:paddingTop="4dip"
android:paddingLeft="8dip"
android:paddingRight="8dip"
android:background="@drawable/widget_header_bg">
<ImageView
android:id="@+id/widget_logo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingRight="8dip"
android:src="@drawable/ic_email_email_widget_holo" />
<LinearLayout
android:id="@+id/widget_header"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight = "1"
android:orientation="vertical">
<TextView
android:id="@+id/widget_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="-2sp"
android:text="@string/widget_all_mail"
android:textSize="14sp"
android:textStyle="bold"
android:textColor="@android:color/white"
android:shadowColor="@color/widget_label_shadow_color"
android:shadowRadius="3"
android:freezesText="true" />
<TextView
android:id="@+id/widget_tap"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="-2sp"
android:singleLine="true"
android:text="@string/widget_other_views"
android:textSize="14sp"
android:textColor="@color/widget_account_color" />
</LinearLayout>
<TextView
android:id="@+id/widget_count"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="-16sp"
android:paddingRight="8dip"
android:textSize="48sp"
android:textColor="@color/widget_unread_count_color"
android:freezesText="true" />
<ImageView
android:id="@+id/widget_compose"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingTop="2dip"
android:src="@drawable/btn_ic_new_email_email_widget_holo_dark" />
</LinearLayout>
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="2dip"
android:layout_marginRight="2dip"
android:background="@drawable/list_div_top_btm_email_widget_holo" />
<ListView
android:id="@+id/message_list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_marginLeft="5dip"
android:layout_marginRight="5dip"
android:paddingTop="6dip"
android:clipToPadding="false"
android:fadingEdge="none"
android:divider="@drawable/list_div_email_widget_holo"
android:cacheColorHint="#00000000" />
<TextView
android:id="@+id/tap_to_configure"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="5dip"
android:layout_marginRight="5dip"
android:layout_weight="1"
android:layout_gravity="fill"
android:gravity="center"
android:paddingTop="6dip"
android:text="@string/widget_touch_to_configure"
android:textSize="16sp"
android:textColor="@android:color/white"
android:visibility="gone"/>
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="2dip"
android:layout_marginRight="2dip"
android:background="@drawable/list_div_top_btm_email_widget_holo" />
</LinearLayout>