单击按钮时如何自动添加新的editext

时间:2017-08-22 11:13:59

标签: android

这是我的设计:

enter image description here

我的问题是:当我点击按钮时,如何在最后一个Edittext和按钮“ADD NEW”之间自动添加新的Edittext?非常感谢你的帮助。

3 个答案:

答案 0 :(得分:0)

edittext.xml

Allocates an array of a given type, but does not do zeroing.

main.xml中

    @ForceInline
    private static byte[] newArray(int length, byte coder) {
        return (byte[]) UNSAFE.allocateUninitializedArray(byte.class, length << coder);
    }

main.java

<?xml version="1.0" encoding="utf-8"?>
<EditText xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/edittext"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="your hint" />

您可以像

那样动态地展开edittext

答案 1 :(得分:0)

LinearLayout layout=(LinearLayout)view.findViewById(R.id.linearLayout);
LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(
                        android.widget.LinearLayout.LayoutParams.MATCH_PARENT,
                        android.widget.LinearLayout.LayoutParams.WRAP_CONTENT);

                EditText edttext= new EditText(this);
                edttext.setId("edittext");
                edttext.setLayoutParams(params);

            layout.addView(edttext);

检查一下......

答案 2 :(得分:0)

创建根布局对象

LinearLayout layout = (LinearLayout) findViewById(R.id.linearLayout);

点击EditText

时,以编程方式对Button进行套道
LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(
                        android.widget.LinearLayout.LayoutParams.MATCH_PARENT,
                        android.widget.LinearLayout.LayoutParams.WRAP_CONTENT);

EditText edttext= new EditText(this);
edttext.setId("et_somthing");
edttext.setLayoutParams(params);

然后使用您的布局添加EditText ..

layout.addView(edttext);