各位前辈大家好
小弟我是刚入门的新手
用的是Android Studio
最近学到array跟arrayList
但在创建好一串array值之后(0~5)
却找不到显示的方法
arrayList倒是可以
LinearLayout rootView = findViewById(R.id.ArrayListView);
int index = 0;
while (index < 6) {
TextView childView = new TextView(this);
childView.setText(words.get(index));
rootView.addView(childView);
index++;
}
但是用一样的方法array却让程式直接崩溃
请问要怎么样才能让array用TextView的样子显示出来勒