Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在按钮单击(比如+)时将editText元素动态添加到我的布局中。就像在默认 android 联系人中添加新联系人时添加它们的方式一样。我还想将每个 editText 的内容检索到一个数组或类似的东西中。
我怎样才能做到这一点?请帮忙。
好的,这是如何做到的。
使用所需的 EditText 的规范创建一个布局 .xml 文件
在您的活动代码中,实例化一个 LayoutInflater,您可以使用 LayoutInflater.from(Context)
使用充气机创建并返回您的 EditText 视图,根据需要存储它。layoutInflater 将要求提供一个 .xml 文件。
将膨胀的视图添加到视图容器以使其显示在任何地方。
祝你好运