diff options
author | Michael Kolb <kolby@google.com> | 2011-07-29 13:37:05 -0700 |
---|---|---|
committer | Michael Kolb <kolby@google.com> | 2011-07-29 15:03:46 -0700 |
commit | 30adae6ebf17a724d24066a200432e6b22a4eeff (patch) | |
tree | a16abcb20629633f894e4e7aa4c38dca5ae73c8a /res/layout-land | |
parent | 1b9353cbf59678721d48313cb92189a1530f0483 (diff) | |
download | packages_apps_browser-30adae6ebf17a724d24066a200432e6b22a4eeff.zip packages_apps_browser-30adae6ebf17a724d24066a200432e6b22a4eeff.tar.gz packages_apps_browser-30adae6ebf17a724d24066a200432e6b22a4eeff.tar.bz2 |
add accessibility descriptions/events
Bug: 4979091
added content descriptions to the image buttons
send event for screen transition
Change-Id: I403fe8504cace4aa84a5b1c6ca18f6c10fc9be34
Diffstat (limited to 'res/layout-land')
-rw-r--r-- | res/layout-land/nav_screen.xml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/res/layout-land/nav_screen.xml b/res/layout-land/nav_screen.xml index d2424ea..8e10f02 100644 --- a/res/layout-land/nav_screen.xml +++ b/res/layout-land/nav_screen.xml @@ -36,6 +36,7 @@ android:paddingRight="16dip" style="@style/HoloButton" android:gravity="center_vertical" + android:contentDescription="@string/accessibility_button_newtab" android:src="@drawable/ic_new_window_holo_dark" /> <ImageButton android:id="@+id/newincognito" @@ -45,6 +46,7 @@ android:paddingRight="16dip" style="@style/HoloButton" android:gravity="center_vertical" + android:contentDescription="@string/accessibility_button_newincognitotab" android:src="@drawable/ic_new_incognito_holo_dark" /> <ImageButton android:id="@+id/bookmarks" @@ -52,6 +54,7 @@ android:layout_height="match_parent" android:paddingLeft="16dip" android:paddingRight="16dip" + android:contentDescription="@string/accessibility_button_bookmarks" android:src="@drawable/ic_bookmarks_history_holo_dark" style="@style/HoloButton" /> <ImageButton @@ -62,6 +65,7 @@ android:paddingRight="16dip" style="@style/HoloButton" android:gravity="center_vertical" + android:contentDescription="@string/accessibility_button_more" android:src="@*android:drawable/ic_menu_moreoverflow_normal_holo_dark" /> </LinearLayout> <com.android.browser.NavTabGallery |