Back to project page ChessBoardLayout.
The source code is released under:
Apache License
If you think the Android project ChessBoardLayout 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.kai.sample.app; /*from w ww .j a v a 2 s . c om*/ /** * Created by kai on 2014. 7. 6.. */ public class Fruit { public String name; public int drawableRes; public Fruit(String name, int drawableRes) { this.name = name; this.drawableRes = drawableRes; } }