I create a demo basket in Android for this, I use the application class to save data. I cannot remove data from a linked list. I call the removeItem () function for android activity to remove the selected item from the list, but it does not work, can someone help me.
package in.co.santoshsharma.bookshopping; import java.util.LinkedList; import android.app.Application; import android.content.res.Configuration; public class GlobalData extends Application{ private String email; private String itemName; private int itemQuantity; private int itemCost; public GlobalData(){ } public GlobalData(String iName,int iQunt,int iCost) {
source share