• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Search results

  1. V

    Apps How to add String[] into List of Setter and Getter

    Hi i am working in AsyncTask <String, Void, List<WrapperClass>> and my WrapperClass is public class WrapperClass { List<String[]> list=null; public List<String[]> getList() { return list; } public void setList(List<String[]> list) { this.list = list; }...