以编程方式组合Textview和EditText创建自定义字段

问题描述 投票:0回答:1

我正在努力从API的JSON Response收到的字符串制作动态表单。

在这里,我想创建一个动态表单,我想识别{field_name}并将其替换为EditText。

下面给出的字符串是从API响应中收到的字符串,是的,它包含“{}”作为字符串的一部分。

因此,我在while循环的帮助下找到它们,并在每次找到{}时创建EditText。

现在我无法解决的问题是如何使用String / TextView附加那些EditText。

例如,

String demo = "{event_name} Event on{event_date} at {event_time} venue {event_venue} All are welcome. -";

Pattern p = Pattern.compile("\\{([^}]*)\\}");
Matcher m = p.matcher(str);

EditText et;

while (m.find()) {
   LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams(width, 
   LinearLayout.LayoutParams.WRAP_CONTENT);
   lp.setMargins(10, 10, 10, 10);
   et = new EditText(this);
   Log.e("onCreateInternal: ", "=" + i);

   SmsTypeGroup.addView(et, lp)
}

用String替换带有EditText的{}后,所需的输出如下所示。

Required output is as shown in this Image

任何帮助都会很棒。

提前致谢。

注意:唯一的条件是整个过程是从Java文件以编程方式完成的,不使用XML。

android android-edittext textview advanced-custom-fields programmatically-created
1个回答
1
投票

我收集英语不是你的第一语言,但如果我理解正确,你现在得到的只是一个带有4 editText的视图,你需要一种方法来在字符串中{}元素之间另外添加文本视图。

一种方法是使用split而不是patternmatch:

String demo = "{event_name} Event on{event_date} at {event_time} venue {event_venue} All are welcome. -";
String[] parts = demo.split("}");

EditText et;

for(String part : parts){
   LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams(width, LinearLayout.LayoutParams.WRAP_CONTENT);
   lp.setMargins(10, 10, 10, 10);
   et = new EditText(this);

   SmsTypeGroup.addView(et, lp);

   String[] _parts = part.split("{");
   if(_parts.length >1){
     TextView tv = new TextView(this);
     tv.text = _parts.[0];
     SmsTypeGroup.addView(tv, lp)
   }
}
© www.soinside.com 2019 - 2024. All rights reserved.