diff options
| author | 2012-02-24 16:23:07 -0800 | |
|---|---|---|
| committer | 2012-02-24 16:23:07 -0800 | |
| commit | 5786f5cf1b248b79f938b3fa3c5d534159261f09 (patch) | |
| tree | f5ceb6d50c4a574dd2296ee0142cb3ef2bbe0eb8 | |
| parent | 133dc2d7aecc68990c363c861716b134910a4ced (diff) | |
| parent | b69b2c01b4de8a161d6c39e7428ffd25c36eb8cc (diff) | |
Merge "Fix build." into ics-mr1
| -rw-r--r-- | tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/BridgeIInputMethodManager.java | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/BridgeIInputMethodManager.java b/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/BridgeIInputMethodManager.java index 2a52888d2d29..a37a356e3ce8 100644 --- a/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/BridgeIInputMethodManager.java +++ b/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/BridgeIInputMethodManager.java @@ -160,8 +160,9 @@ public class BridgeIInputMethodManager implements IInputMethodManager { return false; } - public InputBindResult startInput(IInputMethodClient arg0, IInputContext arg1, EditorInfo arg2, - boolean arg3, boolean arg4) throws RemoteException { + + public InputBindResult startInput(IInputMethodClient client, IInputContext inputContext, + EditorInfo attribute, int controlFlags) throws RemoteException { // TODO Auto-generated method stub return null; } @@ -176,10 +177,12 @@ public class BridgeIInputMethodManager implements IInputMethodManager { } - public void windowGainedFocus(IInputMethodClient arg0, IBinder arg1, boolean arg2, - boolean arg3, int arg4, boolean arg5, int arg6) throws RemoteException { + @Override + public InputBindResult windowGainedFocus(IInputMethodClient client, IBinder windowToken, + int controlFlags, int softInputMode, int windowFlags, EditorInfo attribute, + IInputContext inputContext) throws RemoteException { // TODO Auto-generated method stub - + return null; } public IBinder asBinder() { |