Jgjio
Lurker
Hello, I recently created a list I will use in my statistics application http://androidforums.com/threads/need-help-to-program-a-list-interface.1086892/
Except I don't want one list, I want 15. I was planning to solve this by creating a class List and initializing it 15 times. http://pastebin.com/uULVdwe3 . My issue is this line
final EditText newEditText = new EditText(this);
Android wants me to extend context and implement all of its methods but I'm not sure why it wants me to do this. I am confused about what I should do to implement this solution. Any insight would be helpful.
Except I don't want one list, I want 15. I was planning to solve this by creating a class List and initializing it 15 times. http://pastebin.com/uULVdwe3 . My issue is this line
final EditText newEditText = new EditText(this);
Android wants me to extend context and implement all of its methods but I'm not sure why it wants me to do this. I am confused about what I should do to implement this solution. Any insight would be helpful.