Skip to content

Commit 34706a4

Browse files
Dianne HackbornAndroid Git Automerger
authored andcommitted
am e65a9ab: am 5786f5c: Merge "Fix build." into ics-mr1
* commit 'e65a9ab1ea42d1f6190bee844ee666b7910d71ef': Fix build.
2 parents 92ce631 + e65a9ab commit 34706a4

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/BridgeIInputMethodManager.java

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,9 @@ public boolean showSoftInput(IInputMethodClient arg0, int arg1, ResultReceiver a
160160
return false;
161161
}
162162

163-
public InputBindResult startInput(IInputMethodClient arg0, IInputContext arg1, EditorInfo arg2,
164-
boolean arg3, boolean arg4) throws RemoteException {
163+
164+
public InputBindResult startInput(IInputMethodClient client, IInputContext inputContext,
165+
EditorInfo attribute, int controlFlags) throws RemoteException {
165166
// TODO Auto-generated method stub
166167
return null;
167168
}
@@ -176,10 +177,12 @@ public void updateStatusIcon(IBinder arg0, String arg1, int arg2) throws RemoteE
176177

177178
}
178179

179-
public void windowGainedFocus(IInputMethodClient arg0, IBinder arg1, boolean arg2,
180-
boolean arg3, int arg4, boolean arg5, int arg6) throws RemoteException {
180+
@Override
181+
public InputBindResult windowGainedFocus(IInputMethodClient client, IBinder windowToken,
182+
int controlFlags, int softInputMode, int windowFlags, EditorInfo attribute,
183+
IInputContext inputContext) throws RemoteException {
181184
// TODO Auto-generated method stub
182-
185+
return null;
183186
}
184187

185188
public IBinder asBinder() {

0 commit comments

Comments
 (0)