Back to project page TextViewWithLinks.
The source code is released under:
Apache License
If you think the Android project TextViewWithLinks 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 pt.fjss.TextViewWithLinks; /*from w ww . j a va2s. co m*/ import java.io.Serializable; import android.widget.TextView; public class MessageSpan implements Serializable{ /** * */ private static final long serialVersionUID = -7514309961937880617L; Object obj; private TextView view; public Object getObj() { return obj; } public void setObj(Object obj) { this.obj = obj; } public TextView getView() { return view; } public void setView(TextView view) { this.view = view; } }