Back to project page ChromeCastAgainstHumanity.
The source code is released under:
GNU General Public License
If you think the Android project ChromeCastAgainstHumanity 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.meadowhawk.cah.widget; /*w w w . j a va 2 s. c o m*/ import android.content.Context; import android.util.AttributeSet; import android.view.View; public class CardDisplayView extends View { public CardDisplayView(Context context) { super(context); } public CardDisplayView(Context context, AttributeSet attrs) { super(context, attrs); } }