我TextView
在循环中动态添加了一个。单击按钮时,我想清除文本视图中的现有文本并为其设置一些其他文本。我怎样才能做到这一点?
这是我当前的代码:
ArrayList<String> Cheif_ComplaintNew = new ArrayList<String>();
int cc_Arraylist_length = Cheif_ComplaintNew.size();
android.widget.TextView cc_new = new android.widget.TextView(getApplicationContext());
for(int i=0; i<cc_Arraylist_length; i++)
{
cc_new.setId(i);
cc_new.setText(Cheif_ComplaintNew.get(i));
cc_new.setTextColor(getResources().getColor(R.color.black));
cc_new.setTypeface(null,android.graphics.Typeface.ITALIC);
cc_new.setTextSize(14);
cc_linearNew.addView(cc_new);
System.out.println("id"+i);
}
单击按钮后,列表将被清除,新数据将存储在其中。我想通过清除旧数据在同一文本视图中显示新数据。