使用Tabris在iOS中隐藏键盘

时间:2012-12-03 12:36:55

标签: ios eclipse

是否可以选择在iOS上从屏幕上删除键盘?我在这个上下文中使用了Tabris(http://developer.eclipsesource.com/tabris/)和Java。

我的问题是我使用两个文本字段来输入用户/密码组合。在我填写这些文本字段并按下按钮继续从iOS开始键盘时,我总是会显示,但我希望键盘不再出现。只有在我点击某处后,键盘才会消失。

2 个答案:

答案 0 :(得分:0)

您是否设置了UITextField委托并在那里添加了以下方法?

- (BOOL)textFieldShouldReturn:(UITextField *)textField {
    [textField resignFirstResponder];
    return YES;
}

答案 1 :(得分:0)

在Tabris上,您可以通过设置Focus on a Control使用键盘(如org.eclipse.swt.widgets.Text)以编程方式“打开”键盘。 要隐藏键盘,只需将Focus设置为不需要键盘的Control,就像Textfield的父组合一样。

在你的情况下,我会在你的Button的SelectionListener中添加al line,将Focus设置在Textfields的Parent上,然后启动Login过程。

以下是一些可以玩和理解Focus机制的代码:

public class FocusTest implements EntryPoint {

public int createUI() {
    Display display = new Display();
    Shell shell = new Shell(display, SWT.NO_TRIM);
    shell.setMaximized(true);
    GridLayoutFactory.fillDefaults().applyTo(shell);
    createContent(shell);
    shell.open();
    //while (!shell.isDisposed()) {
    //  if (!display.readAndDispatch()) {
    //      display.sleep();
    //  }
    //}
    return 0;
}

private void createContent(final Composite parent) {
    Button buttonSingleText = new Button(parent, SWT.PUSH);
    buttonSingleText.setText("Focus on SingleText");
    GridDataFactory.fillDefaults().grab(true, false).align(SWT.FILL, SWT.CENTER).applyTo(buttonSingleText);

    Button buttonMultiText = new Button(parent, SWT.PUSH);
    buttonMultiText.setText("Focus on MultiText");
    GridDataFactory.fillDefaults().grab(true, false).align(SWT.FILL, SWT.CENTER).applyTo(buttonMultiText);

    Button buttonNoFocus = new Button(parent, SWT.PUSH);
    buttonNoFocus.setText("Loose Focus");
    GridDataFactory.fillDefaults().grab(true, false).align(SWT.FILL, SWT.CENTER).applyTo(buttonNoFocus);

    final Text singleText = new Text(parent, SWT.SINGLE);
    GridDataFactory.fillDefaults().grab(true, false).align(SWT.FILL, SWT.CENTER).applyTo(singleText);

    final Text multiText = new Text(parent, SWT.MULTI);
    GridDataFactory.fillDefaults().grab(true, false).align(SWT.FILL, SWT.CENTER).applyTo(multiText);

    buttonSingleText.addSelectionListener(new SelectionAdapter() {
        @Override
        public void widgetSelected(SelectionEvent e) {
            singleText.setFocus();
        }
    });
    buttonMultiText.addSelectionListener(new SelectionAdapter() {
        @Override
        public void widgetSelected(SelectionEvent e) {
            multiText.setFocus();
        }
    });
    buttonNoFocus.addSelectionListener(new SelectionAdapter() {
        @Override
        public void widgetSelected(SelectionEvent e) {
            parent.setFocus();
        }
    });
}
}