Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LatinIME
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
keyboard
LatinIME
Commits
621e3f98
Commit
621e3f98
authored
12 years ago
by
Svetoslav Ganov
Browse files
Options
Downloads
Patches
Plain Diff
Fix the build
Change-Id: I5c4e230500f058f7db86c05d554be45411004ffc
parent
7a83ffa4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
java/src/com/android/inputmethod/accessibility/AccessibilityEntityProvider.java
+4
-2
4 additions, 2 deletions
...nputmethod/accessibility/AccessibilityEntityProvider.java
with
4 additions
and
2 deletions
java/src/com/android/inputmethod/accessibility/AccessibilityEntityProvider.java
+
4
−
2
View file @
621e3f98
...
@@ -18,6 +18,7 @@ package com.android.inputmethod.accessibility;
...
@@ -18,6 +18,7 @@ package com.android.inputmethod.accessibility;
import
android.graphics.Rect
;
import
android.graphics.Rect
;
import
android.inputmethodservice.InputMethodService
;
import
android.inputmethodservice.InputMethodService
;
import
android.os.Bundle
;
import
android.support.v4.view.ViewCompat
;
import
android.support.v4.view.ViewCompat
;
import
android.support.v4.view.accessibility.AccessibilityNodeInfoCompat
;
import
android.support.v4.view.accessibility.AccessibilityNodeInfoCompat
;
import
android.support.v4.view.accessibility.AccessibilityNodeProviderCompat
;
import
android.support.v4.view.accessibility.AccessibilityNodeProviderCompat
;
...
@@ -185,14 +186,15 @@ public class AccessibilityEntityProvider extends AccessibilityNodeProviderCompat
...
@@ -185,14 +186,15 @@ public class AccessibilityEntityProvider extends AccessibilityNodeProviderCompat
* the host View, with the given <code>virtualViewId</code> or the host View itself if
* the host View, with the given <code>virtualViewId</code> or the host View itself if
* <code>virtualViewId</code> equals to {@link View#NO_ID}.
* <code>virtualViewId</code> equals to {@link View#NO_ID}.
*
*
* @param action The action to perform.
* @param virtualViewId A client defined virtual view id.
* @param virtualViewId A client defined virtual view id.
* @param action The action to perform.
* @param arguments Optional arguments.
* @return True if the action was performed.
* @return True if the action was performed.
* @see #createAccessibilityNodeInfo(int)
* @see #createAccessibilityNodeInfo(int)
* @see AccessibilityNodeInfoCompat
* @see AccessibilityNodeInfoCompat
*/
*/
@Override
@Override
public
boolean
performAc
cessibilityAction
(
int
action
,
int
virtualViewId
)
{
public
boolean
performAc
tion
(
int
virtualViewId
,
int
action
,
Bundle
arguments
)
{
if
(
virtualViewId
==
View
.
NO_ID
)
{
if
(
virtualViewId
==
View
.
NO_ID
)
{
// Perform the action on the host View.
// Perform the action on the host View.
switch
(
action
)
{
switch
(
action
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment