diff options
author | Joe Onorato <joeo@android.com> | 2009-11-11 14:52:11 -0800 |
---|---|---|
committer | Joe Onorato <joeo@android.com> | 2009-11-11 14:52:11 -0800 |
commit | 52a653f3ffec3fd95987e0e35151cb670a54109a (patch) | |
tree | 2dcc41c6b8a837f4b6cf3c0dc8f06a465f027ad9 /src/com/android/launcher2/HandleView.java | |
parent | a30ce8e6b25e41f392a41fd4d0d3e0a424a84dad (diff) | |
download | packages_apps_trebuchet-52a653f3ffec3fd95987e0e35151cb670a54109a.zip packages_apps_trebuchet-52a653f3ffec3fd95987e0e35151cb670a54109a.tar.gz packages_apps_trebuchet-52a653f3ffec3fd95987e0e35151cb670a54109a.tar.bz2 |
Fix 2241848 - 3D apps folder does not send accessibility events
It's now sending them. The beeping and vibrating accessibility things
work, but we only have prebuilts for the speech one and it's not saying
anything and I can't debug it, so this will have to do.
Diffstat (limited to 'src/com/android/launcher2/HandleView.java')
-rw-r--r-- | src/com/android/launcher2/HandleView.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/com/android/launcher2/HandleView.java b/src/com/android/launcher2/HandleView.java index 2bffe4b..e07334e 100644 --- a/src/com/android/launcher2/HandleView.java +++ b/src/com/android/launcher2/HandleView.java @@ -45,6 +45,8 @@ public class HandleView extends ImageView { TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.HandleView, defStyle, 0); mOrientation = a.getInt(R.styleable.HandleView_direction, ORIENTATION_HORIZONTAL); a.recycle(); + + setContentDescription(context.getString(R.string.all_apps_button_label)); } @Override |