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
57 lines
2.1 KiB
XML
57 lines
2.1 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.
|
|
-->
|
|
|
|
<RelativeLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="@dimen/account_spinner_width"
|
|
android:layout_height="match_parent"
|
|
android:focusable="true"
|
|
style="@android:style/Widget.Holo.Spinner"
|
|
>
|
|
<TextView
|
|
android:id="@+id/spinner_count"
|
|
style="@style/action_bar_unread_count"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_alignParentRight="true"
|
|
android:includeFontPadding="false"
|
|
android:singleLine="true"
|
|
android:ellipsize="none"
|
|
android:gravity="center"
|
|
/>
|
|
<RelativeLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_toLeftOf="@+id/spinner_count"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_centerVertical="true"
|
|
>
|
|
<TextView
|
|
android:id="@+id/spinner_line_1"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
style="@style/action_bar_spinner_primary_text"
|
|
/>
|
|
<TextView
|
|
android:id="@+id/spinner_line_2"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@+id/spinner_line_1"
|
|
style="@style/action_bar_spinner_secondary_text"
|
|
/>
|
|
</RelativeLayout>
|
|
</RelativeLayout>
|