Back to project page Wallpaper.
The source code is released under:
?????? ????? ?????? ?????? ?????????? ????????? 1.?????? ???????? ??????? ??????? ????? ?????? ????? ?????????...
If you think the Android project Wallpaper 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 net.uyghurdev.app.wallpaper; /* w ww . j a v a 2s.c o m*/ import java.util.ArrayList; public class SitesList { /** Variables */ private ArrayList<String> imgName = new ArrayList<String>(); private ArrayList<String> imgAddr = new ArrayList<String>(); private ArrayList<String> imgAddrSmall = new ArrayList<String>(); /** In Setter method default it will return arraylist * change that to add */ public ArrayList<String> getIMGName() { return imgName; } public void setIMGName(String imgName) { this.imgName.add(imgName); } public ArrayList<String> getImgAddr() { return imgAddr; } public void setImgAddr(String imgAddr) { this.imgAddr.add(imgAddr); } public ArrayList<String> getImgSmall() { return imgAddrSmall; } public void setImgSmall(String imgAddrSmall) { this.imgAddrSmall.add(imgAddrSmall); } }