无法检索动态创建的EditText的值

时间:2012-06-26 12:08:14

标签: android android-edittext

嗨大家我用一个默认值的JSON动态创建了一些EditTexts。

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

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

2 个答案:

答案 0 :(得分:1)

终于找到了问题!!!

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

菜鸟错误!无论如何,感谢帮助人员。

答案 1 :(得分:0)

尝试更改

Object.getClass() == Class.class

Object.getClass().equals(Class.class)