Back to project page ListView-Swipe-to-Delete.
The source code is released under:
Apache License
If you think the Android project ListView-Swipe-to-Delete 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.skd.swipetodelete; /*from ww w .j ava2 s .c om*/ /* * A custom data class. */ public class Item extends ItemBase { private int id; private String text; public Item(int id, String text) { super(); this.id = id; this.text = text; } public int getId() { return id; } public void setId(int id) { this.id = id; } public String getText() { return text; } public void setText(String text) { this.text = text; } }