Back to project page schat.
The source code is released under:
MIT License
If you think the Android project schat listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.data; /* w w w . j a v a 2s.c o m*/ import data.ChatMessage; import java.util.ArrayList; /** * Attempt to trick com.activities.ChatAdapter.java's constructors super() method * User: Wolfram * Date: 12.11.13 * Time: 23:36 */ public class ChatArrayList extends ArrayList<ChatMessage> { public ArrayList<String> toStringArrayList() { ArrayList<String> ret = new ArrayList<>(); for (int i = 0; i < this.size(); i++) { ret.add(this.get(i).getMessage()); } return ret; } }