replicant-packages_apps_Email/res/layout/message_view_invitation.xml
Makoto Onuki 9623a4ce6f Increase usability of invite components in MessageView
* Make yes, no, maybe, etc. larger (easier to touch)
  (bug #2561772)
* Make the accept/decline/maybe buttons focusable
  Make the "View in Calender" a button
  (bug #2561767)

Change-Id: I5b68041835e9d85e5290a30fe7910837b577c003
2010-04-07 16:45:23 -07:00

137 lines
4.9 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:id="@+id/invite_section"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/text_box"
android:visibility="gone"
>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:singleLine="true"
android:ellipsize="end"
android:text="@string/message_view_invite_title"
android:textColor="?android:attr/textColorPrimaryInverse"
android:drawableLeft="@drawable/ic_event_email"
android:layout_marginLeft="6dip"
android:layout_alignParentLeft="true"
android:gravity="center_vertical"
android:layout_centerVertical="true"
/>
<Button
android:id="@+id/invite_link"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:singleLine="true"
android:ellipsize="end"
android:text="@string/message_view_invite_view"
android:layout_marginRight="6dip"
android:layout_alignParentRight="true"
android:gravity="center_vertical"
android:layout_gravity="center_vertical"
/>
</RelativeLayout>
<View
android:layout_width="match_parent"
android:layout_height="1px"
android:background="#ff808080"
/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="44dip"
android:orientation="horizontal"
android:gravity="center_vertical"
android:layout_margin="2dip"
>
<TextView
android:id="@+id/invite_info"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_marginLeft="6dip"
android:layout_marginRight="6dip"
android:singleLine="true"
android:ellipsize="end"
android:text="@string/message_view_invite_text"
android:textColor="?android:attr/textColorPrimaryInverse"
/>
<TextView
android:id="@+id/accept"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_marginRight="6dip"
android:text="@string/message_view_invite_accept"
android:singleLine="true"
android:textColor="?android:attr/textColorPrimaryInverse"
android:drawableLeft="@drawable/btn_invite_yes"
android:gravity="center_vertical"
android:focusable="true"
/>
<TextView
android:id="@+id/maybe"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_marginRight="6dip"
android:text="@string/message_view_invite_maybe"
android:singleLine="true"
android:textColor="?android:attr/textColorPrimaryInverse"
android:drawableLeft="@drawable/btn_invite_maybe"
android:gravity="center_vertical"
android:focusable="true"
/>
<TextView
android:id="@+id/decline"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/message_view_invite_decline"
android:singleLine="true"
android:textColor="?android:attr/textColorPrimaryInverse"
android:drawableLeft="@drawable/btn_invite_no"
android:gravity="center_vertical"
android:focusable="true"
/>
<View
android:layout_width="0dip"
android:layout_height="0dip"
android:layout_weight="5"
/>
</LinearLayout>
</LinearLayout>