Attempted more UI fixing.
(This does not work though and will need to be rolled back to e08e27c903.)
This commit is contained in:
parent
cbb7561506
commit
2ba6003ea9
2 changed files with 8 additions and 0 deletions
|
|
@ -131,4 +131,8 @@ public class InterfaceHandler implements View.OnClickListener, View.OnLongClickL
|
|||
protected void hideView() {
|
||||
mainview.setVisibility(View.GONE);
|
||||
}
|
||||
|
||||
protected void showView() {
|
||||
mainview.setVisibility(View.VISIBLE);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -111,9 +111,13 @@ public class TraditionalT9 extends InputMethodService implements
|
|||
|
||||
@Override
|
||||
public boolean onEvaluateInputViewShown() {
|
||||
Log.d("T9.onEvaluateInputViewShown", "whatis");
|
||||
if (mEditing == EDITING_NOSHOW) {
|
||||
return false;
|
||||
}
|
||||
if (interfacehandler != null) {
|
||||
interfacehandler.showView();
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue