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.activities; /* w ww . java2s.co m*/ import android.content.Context; import android.widget.TextView; import data.User; /** * @version 7.10.2013 */ public class ContactView extends TextView { private User user; public ContactView(Context context, User user) { super(context); setText(user.getName()); } }