如何验证编辑文本并将值存储在 Android 中?
我在按钮内部创建一个函数并在外部调用该函数。 当我单击按钮时,将调用 ...
函数内部。创建一个表布局和表行。在表行中,我正在创建编辑文本。如何验证编辑文本并存储值。
假设我第一次单击按钮意味着将显示一个编辑文本,输入值后,然后我单击按钮将显示另一个编辑文本等等...如何将值存储在数组列表中。并且还要验证编辑文本,如果它为空意味着按钮不会。
I am creating one function inside the button and call the function outside.
When I click the button will call ...
Inside the function. Creating one Table layout and Table row. In the table row, I am creating edit text. How can I validate the edit text and store the values.
Suppose I am click the button first time means one edit text will displayed, after entering the values, then I click button another edit text will displayed etc... How can I store the values in array list. And also validate the edit text, if it null means the the button will not.
当编辑文本没有任何数据时,即显示编辑文本时,将按钮设置为禁用
启用
,并在et 是您的 editText 的地方
按钮PS:您的问题不清楚。答案仅代表我的理解。
Set your button disabled when there is edit text without any data i.e as soon as edit text is displayed
and enable in on
where et is your editText
PS: Your question is not clear. The answer is just for what I understand.