所以我试图以编程方式将EditText添加到LinearLayout
。我在其点击上添加了一个“+”ImageButton
,我将添加一个EditText
,直到有五个。下面是我的XML文件的片段。
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/margin_16"
android:orientation="horizontal">
<LinearLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="vertical">
</LinearLayout>
<ImageButton
android:id="@+id/add_field"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_marginBottom="@dimen/margin_16"
android:background="@drawable/cyan_top_rounded"
android:src="@drawable/add" />
</LinearLayout>
ID为“Container”的LinearLayout
将EditText作为子级。下面是我添加EditText的代码。
mAddField.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if (count < 5) {
mAddField.setEnabled(true);
mContainer.addView(getTextField());
count++;
} else {
mAddField.setEnabled(false);
}
}
});
private EditText getTextField() {
EditText et = new EditText(this);
LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT);
et.setLayoutParams(params);
et.setText("abcd");
return et;
}
private void initUI() {
mAddField = (ImageButton) findViewById(R.id.add_field);
mContainer = (LinearLayout) findViewById(R.id.container);
EditText et = new EditText(this);
LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT);
et.setLayoutParams(params);
et.setText("abcd");
mContainer.addView(et);
}
然而,当我点击ImageButton时,没有任何反应。如果完全添加EditText,则LinearLayout也不会展开。请帮忙。
答案 0 :(得分:1)
Change ur layout to this it will work fine:(Make the necessary changes according to ur own). Problem is with the height and width of the outer as well as the inner LinearLayout.
<LinearLayout android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
xmlns:android="http://schemas.android.com/apk/res/android">
<LinearLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:orientation="vertical">
</LinearLayout>
<ImageButton
android:id="@+id/add_field"
android:layout_width="40dp"
android:layout_height="40dp"
android:src="@drawable/image" />
</LinearLayout>
答案 1 :(得分:1)
试试这个:
...
<LinearLayout
android:id="@+id/container"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:orientation="vertical">
</LinearLayout>
...
答案 2 :(得分:0)
您要在其中动态添加Edittext的视图,您必须将其宽度和高度设置为“wrap_content”。所以只需将内部布局更改为:
<LinearLayout
android:id="@+id/container"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:orientation="vertical">
我认为这会帮助你。