8e779e627a
TalkBack functions properly with MessageList items, as well as "reply," "reply-all," and "forward" buttons while viewing messages. It is now also possible to switch accounts using only a dpad or trackball. Finally, EditText fields in account setup also work with TalkBack now. Checkmarks don't work with Talkback, but this I have confirmed and reported it as frameworks bug. Change-Id: I7f72682a517eef4fa122241c675026fe7997ac64
49 lines
1.7 KiB
XML
49 lines
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2011 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.
|
|
-->
|
|
|
|
<merge xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<ImageView
|
|
android:id="@+id/favorite"
|
|
android:src="@drawable/btn_star_off_normal_email_holo_light"
|
|
android:layout_width="32dip"
|
|
android:layout_height="24dip"
|
|
android:layout_margin="6dip"
|
|
/>
|
|
<ImageView
|
|
android:id="@+id/reply"
|
|
android:src="@drawable/reply"
|
|
android:layout_width="32dip"
|
|
android:layout_height="24dip"
|
|
android:layout_margin="6dip"
|
|
android:baselineAlignBottom="true"
|
|
android:contentDescription="@string/reply_action"
|
|
/>
|
|
<View
|
|
android:layout_width="1dip"
|
|
android:layout_height="24dip"
|
|
android:layout_margin="3dip"
|
|
android:background="#ddd"
|
|
/>
|
|
<ImageView
|
|
android:id="@+id/more"
|
|
style="@android:style/Widget.Holo.ActionButton.Overflow"
|
|
android:layout_width="32dip"
|
|
android:layout_height="24dip"
|
|
android:layout_margin="6dip"
|
|
android:baselineAlignBottom="true"
|
|
/>
|
|
</merge>
|