0

是否有从 iOS 屏幕上移除键盘的选项?在这种情况下,我使用 Tabris (http://developer.eclipsesource.com/tabris/) 和 Java。

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

4

2 回答 2

0

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

- (BOOL)textFieldShouldReturn:(UITextField *)textField {
    [textField resignFirstResponder];
    return YES;
}
于 2012-12-03T12:38:50.453 回答
0

在 Tabris 上,您可以通过将焦点设置在使用键盘的控件上(如 org.eclipse.swt.widgets.Text )以编程方式“打开”键盘。要隐藏键盘,只需将焦点设置为不需要键盘的控件,例如 Textfield 的父组合。

在您的情况下,我会在您的 Button 的 SelectionListener 中添加一行以将焦点设置在您的 Textfields 的父级上,然后启动登录过程。

下面是一些代码来玩和理解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();
        }
    });
}
}
于 2012-12-11T08:47:10.163 回答