我試圖動態地將editText
添加到相對佈局。該版面已包含editText
。我需要在現有的下面添加新的editText
。將Edittext動態添加到現有EditText下的相對佈局
EditText designation1 = new EditText(context);
designation1.setHint("designation");
designation1.setSingleLine(true);
和我的佈局是
layoutExp =
(RelativeLayout) childView.findViewById(R.id.relative_layout_edit_exp);
和我現有的編輯文本是
designation = (EditText)childView.findViewById(R.id.editTextDesignatn);
你試過了嗎? – njzk2