summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher2/HandleView.java
diff options
context:
space:
mode:
authorJoe Onorato <joeo@android.com>2009-11-11 14:52:11 -0800
committerJoe Onorato <joeo@android.com>2009-11-11 14:52:11 -0800
commit52a653f3ffec3fd95987e0e35151cb670a54109a (patch)
tree2dcc41c6b8a837f4b6cf3c0dc8f06a465f027ad9 /src/com/android/launcher2/HandleView.java
parenta30ce8e6b25e41f392a41fd4d0d3e0a424a84dad (diff)
downloadandroid_packages_apps_Trebuchet-52a653f3ffec3fd95987e0e35151cb670a54109a.tar.gz
android_packages_apps_Trebuchet-52a653f3ffec3fd95987e0e35151cb670a54109a.tar.bz2
android_packages_apps_Trebuchet-52a653f3ffec3fd95987e0e35151cb670a54109a.zip
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.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/com/android/launcher2/HandleView.java b/src/com/android/launcher2/HandleView.java
index 2bffe4b52..e07334e9f 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