Back to project page steamchat.
The source code is released under:
Apache License
If you think the Android project steamchat 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.kevelbreh.steamchat.widget.view; //from w ww . j a v a2 s .co m import android.content.Context; import android.util.AttributeSet; import android.widget.RelativeLayout; /** * Steam interactions list view item displaying a friends profile picture and other content depending * on the state of the last interaction. */ public class FriendInteractionsView extends RelativeLayout { public FriendInteractionsView(Context context) { super(context); } public FriendInteractionsView(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); } }