1
0
Fork 0

Attempted more UI fixing.

(This does not work though and will need to be rolled back to e08e27c903.)
This commit is contained in:
Clam 2014-03-14 08:12:03 +11:00
parent cbb7561506
commit 2ba6003ea9
2 changed files with 8 additions and 0 deletions

View file

@ -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);
}
}

View file

@ -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;
}