gpt4 book ai didi

java - 要将在编辑文本中输入的所有信息保留在不同的 TextView 中

转载 作者:行者123 更新时间:2023-12-01 17:56:32 27 4
gpt4 key购买 nike

Android上有一个编辑文本,我希望每次将用户在此编辑文本中输入的信息保留在不同的文本视图中。例如,第一个信息是1000位数字。我想将此保留在txt_1中。假设第二个信息为1001。我想保留此信息txt_2,并且txt_1中的1000个数字应始终存在,因此用户输入的每个信息都应保留在下一个txtview中。但是我有一个edittext。我怎样才能做到这一点?

最佳答案

尝试使用ArrayList添加edittext的值,然后将其强制转换为:

final ArrayList<String> textArray = new ArrayList<String>();
editText = findViewById(R.id.editText);
firstTV = findViewById(R.id.firstTV);
secondTV = findViewById(R.id.secondTV);
thirdTV = findViewById(R.id.thirdTV);
addButton = findViewById(R.id.addButton);
showButton = findViewById(R.id.showButton);

addButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
textArray.add(editText.getText().toString());
}
});


showButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {

firstTV.setText(textArray.get(0).toString());
secondTV.setText(textArray.get(1).toString());
thirdTV.setText(textArray.get(2).toString());

}
});


希望对您有帮助

关于java - 要将在编辑文本中输入的所有信息保留在不同的 TextView 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60705568/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com