由于自己的解析元素類里有個TextView然后gson解析的時候就報錯:
declares multiple JSON fields named XXX
解決方法是在這個變量前加transient
private transient TextView typeView;
這樣解析就不會報錯了
由于自己的解析元素類里有個TextView然后gson解析的時候就報錯:
declares multiple JSON fields named XXX
解決方法是在這個變量前加transient
private transient TextView typeView;
這樣解析就不會報錯了