WordButton类有些不懂
这个类已有一个字符串类型的成员变量了,里面也有一个mViewButton的成员变量,这个button也可以设置控件显示文字,最后为什么要采用两个呢,还有在
private ArrayList<WordButton> initAllWord()
{
ArrayList<WordButton> dataArrayList = new ArrayList<WordButton>();
String[]songs= generateWords();
for(int i=0;i<24;i++)
{
WordButton wordButton = new WordButton();
wordButton.mViewButton.setText(songs[i]+"");//wordButton.mWordString= songs[i]; //可以替换的吗?经测试发现空指针
dataArrayList.add(wordButton);
}
return dataArrayList;
}