我正在创建一个应用程序,我想从一个字符串数组中更改textviews的文本。 为此,我需要制作textviews数组。怎么做?任何人都可以帮助我吗
答案 0 :(得分:25)
您可以像这样创建TextView:
int textViewCount = 10;
TextView[] textViewArray = new TextView[textViewCount];
for(int i = 0; i < textViewCount; i++) {
textViewArray[i] = new TextView(this);
}
答案 1 :(得分:2)
可能对你有用我使用按钮数组,所以我猜这样的textview工作:
TextView[ ][ ] _txt;
_txt = new TextView[_dimension][_dimension]; // _dimension = 5 what you want
_txt[0][0] = (TextView) findViewById(R.id.text1);
_txt[0][1] = (TextView) findViewById(R.id.text2);
以及更多......
答案 2 :(得分:2)
如果你想要大量的textview,那么在这种情况下要避免使用以下代码
的OutofBound异常LinearLayout parent = new LinearLayout(this);
TextView textView;
for( i = 0; i < count; i++) {
textView = new TextView(this);
textView.setTag(""+i);// setting tag with index i
parent.addView(textView);
}
int len=parent.getChildCount();
int j = 0;
int requiredPosition = 5;
while(j<len) {
TextView tempTextView =((TextView)parent.getChildAt(i));
if( tempTextView.getTag().equals(""+requiredPosition)){
//Perform required operation
//tempTextView.setText("");
}
j++;
}
答案 3 :(得分:1)
你可以通过以下方式实现这一目标:
int textvwCount = 20;//number of textview you want to use in an array
TextView[] arrTxtView = new TextView[textvwCount ]; // declare and assign array length of text views.
for(int i = 0; i < textViewCount; i++) { // iterate over all array items and assign them text.
Textview txtCnt = new TextView(this);
txtCnt .settext(i);
textViewArray[i] =txtCnt ;
}