,首先需要一个存储文本的数据结构,例如一个字符串数组或者一个List<String>。然后,我们可以使用for循环遍历数据结构,将每个文本赋值给对应的TextView。
具体的实现步骤如下:
String[] texts = {"文本1", "文本2", "文本3"};
或者使用List<String>:
List<String> texts = new ArrayList<>();
texts.add("文本1");
texts.add("文本2");
texts.add("文本3");
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
for (int i = 0; i < texts.length; i++) {
int textViewId = getResources().getIdentifier("textView" + (i + 1), "id", getPackageName());
TextView textView = findViewById(textViewId);
textView.setText(texts[i]);
}
或者使用List<String>的方式:
for (int i = 0; i < texts.size(); i++) {
int textViewId = getResources().getIdentifier("textView" + (i + 1), "id", getPackageName());
TextView textView = findViewById(textViewId);
textView.setText(texts.get(i));
}
这样,for循环会逐个遍历存储文本的数据结构,并将每个文本赋值给对应的TextView,实现了存储TextView的文本。
注意:以上示例代码是基于Android平台的Java代码,如果是其他平台或编程语言,实现方式可能会有所不同。
领取专属 10元无门槛券
手把手带您无忧上云