1

嗨,伙计们,我从具有默认值的 JSON 动态创建了一些 EditText。

在向 EditTexts 输入一些值后,我使用根视图的getChildAt()方法访问了它们。使用EditText的getText()方法时,它返回默认值,而不是更改后的值。我什至无法通过代码设置 EditText 的文本。

这是我创建 EditText 的方法。

private static EditText createEditText(final Context context,
        Element element) {
    final EditText editText = new EditText(context);
    editText.setId(Integer.parseInt(element.getFieldID()));
    editText.setText(element.getCellValue());
    editText.setTag(element);
    editText.setOnEditorActionListener(new TextView.OnEditorActionListener() {

        public boolean onEditorAction(TextView v, int actionId,
                KeyEvent event) {
            if (event != null
                    && (event.getKeyCode() == KeyEvent.KEYCODE_ENTER)) {
                InputMethodManager inputMethodManager = (InputMethodManager) context
                        .getSystemService(Context.INPUT_METHOD_SERVICE);
                inputMethodManager.hideSoftInputFromWindow(
                        editText.getApplicationWindowToken(),
                        InputMethodManager.HIDE_NOT_ALWAYS);
            }
            return false;
        }
    });

    return editText;
}

这就是我在更改文本后访问 EditTexts 的方式。

public static boolean updateElements(ScrollView rootView) {
    try {
        for (int i = 0; i < rootView.getChildCount(); i++) {
            View view = rootView.getChildAt(i);
            if (view.getClass() == LinearLayout.class) {
                LinearLayout layout = (LinearLayout) view;
                for (int x = 0; x < layout.getChildCount(); x++) {

                    View linearView = layout.getChildAt(x);

                    if (linearView.getClass() == EditText.class) {
                        EditText txtBox = (EditText) linearView;

                        txtBox.setText("TextBox " + x);


                        }
                    }
                }
            }
        }

        return true;

    } catch (Exception ex) {
        ex.printStackTrace();
        return false;
    }
}

请告诉我我在这里做错了什么......谢谢。

4

2 回答 2

1

终于找到问题了!!!

我一直在onCreate()onResume()方法中设置活动的根视图。传递给updateElements(ScrollView rootView)的视图是在onCreate()方法创建的视图;但显示的实际视图是onResume()创建的视图。

菜鸟失误!无论如何,感谢您的帮助。

于 2012-06-27T06:30:01.430 回答
0

尝试改变

Object.getClass() == Class.class

Object.getClass().equals(Class.class)
于 2012-06-26T12:17:08.083 回答