I am making shopping app.in which single product is being add in shopping bag but when i am selecting another product so its showing current quantity and image not first one.in my app customer will select product from either list view,grid view,image gallery then full image will open of selected products by customer then in full image there is add to cart image when customer will click on add to cart image so it will add in shopping bag.but when i am going back for selecting another product so session being break and showing current product not all which i selected before.
this is my Test2Activity.java
package com.prod;
import java.util.ArrayList;
import android.app.Activity;
import android.app.AlertDialog;
import android.content.Intent;
import android.graphics.Typeface;
import android.os.Bundle;
import android.view.Gravity;
import android.view.KeyEvent;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.AdapterView;
import android.widget.Button;
import android.widget.ImageView;
import android.widget.TextView;
import android.widget.Toast;
public class Test2Activity extends Activity {
//private ImageView mProductList;
TextView txtView = null;
// Always called when an Android activity launches.
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.testmain);
//Obtain a reference to the product catalog
//mProductList = (ImageView) ShoppingCartHelper.getCatalog(getResources());
//add to crt button
ImageView ViewShoppingCart1 = (ImageView) findViewById(R.id.cartage1);
ViewShoppingCart1.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
Intent productDetailsIntent = new Intent(getBaseContext(),ProductDetailsActivity.class);
productDetailsIntent.putExtra(ShoppingCartHelper.PRODUCT_INDEX, false);
startActivity(productDetailsIntent);
}
});
Button viewShoppingCart = (Button) findViewById(R.id.ButtonViewCart);
viewShoppingCart.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
Intent viewShoppingCartIntent = new Intent(getBaseContext(), ShoppingCartActivity.class);
startActivity(viewShoppingCartIntent);
}
}); }
testmain.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center_vertical"
android:orientation="vertical"
android:id="@+id/background"
android:background="#ffffff"
>
<!-- header start -->
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="46dp"
android:background="@drawable/topheader">
</RelativeLayout>
<!-- Header Ends -->
<!-- header end -->
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textColor="#ffffff"
android:textSize="16sp"
android:textStyle="bold"
android:padding="8dip"
android:id="@+id/any_old_widget"/>
<ImageView
android:id="@+id/product"
android:layout_width="209dp"
android:layout_height="15dp"
android:layout_gravity="center"
android:layout_weight="0.20"
android:gravity="center"
android:scaleType="fitCenter"
android:src="@drawable/mainpic" />
<TextView
android:id="@+id/but12"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text=" Multicolor Diamond"
android:textColor="#000000" />
<TextView
android:id="@+id/but13"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="0.01"
android:gravity="center"
android:text=" Ring"
android:textColor="#000000" />
<TextView
android:id="@+id/but11"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="Price: 8,000Rs"
android:textColor="#000000" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
<ImageView
android:id="@+id/cartage1"
android:layout_width="214dp"
android:layout_height="40dp"
android:layout_gravity="center"
android:src="@drawable/addd" />
<Button android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="5dip"
android:layout_gravity="right"
android:id="@+id/ButtonViewCart"
android:text="View Shopping Cart"></Button>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
<!-- Link to category -->
<!-- footer menu-->
<View
android:layout_width="wrap_content"
android:layout_height="2dp"
android:background="#000000" />
<TableLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/tableLayout1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:shrinkColumns="*"
android:stretchColumns="*" >
<!-- <TableRow
android:id="@+id/tableRow4"
android:layout_width="match_parent"
android:layout_height="30dp"
android:gravity="center_horizontal" >
Logo Start
<ImageView
android:id="@+id/img1"
android:src="@drawable/newhome"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dip"/>
<ImageView
android:id="@+id/img2"
android:src="@drawable/mulpro1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dip"/>
<ImageView
android:id="@+id/img3"
android:src="@drawable/bicon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dip"/>
Logo Ends
</TableRow> -->
</TableLayout>
<!-- footer ends -->
</LinearLayout>
HOME1FULL.java
package com.prod;
import android.app.Activity;
import android.content.Intent;
import android.graphics.Typeface;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuInflater;
import android.view.MenuItem;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.ImageView;
import android.widget.TextView;
import android.widget.Toast;
public class Home1Full extends Activity {
//private ImageView mProductList;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.setContentView(R.layout.home1full);
//mProductList = (ImageView) ShoppingCartHelper.getCatalog(getResources());
//add to crt button
ImageView ne = (ImageView) findViewById(R.id.cartage);
ne.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
Intent productDetailsIntent = new Intent(getBaseContext(),ProductDetailsActivity.class);
productDetailsIntent.putExtra(ShoppingCartHelper.PRODUCT_INDEX, false);
startActivity(productDetailsIntent);
}
});
Button viewShoppingCart = (Button) findViewById(R.id.ButtonViewCart);
viewShoppingCart.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
Intent viewShoppingCartIntent = new Intent(getBaseContext(), ShoppingCartActivity.class);
startActivity(viewShoppingCartIntent);
}
});}}
home1full.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center_vertical"
android:orientation="vertical"
android:id="@+id/background"
android:background="#ffffff"
>
<!-- header start -->
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="46dp"
android:background="@drawable/topheader">
</RelativeLayout>
<!-- Header Ends -->
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textColor="#ffffff"
android:textSize="16sp"
android:textStyle="bold"
android:padding="8dip"
android:id="@+id/any_old_widget"/>
<ImageView
android:id="@+id/product"
android:layout_width="209dp"
android:layout_height="15dp"
android:layout_gravity="center"
android:layout_weight="0.20"
android:gravity="center"
android:scaleType="fitCenter"
android:src="@drawable/hme5" />
<TextView
android:id="@+id/but12"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text=" Multicolor Diamond"
android:textColor="#000000" />
<TextView
android:id="@+id/but13"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="0.01"
android:gravity="center"
android:text=" Ring"
android:textColor="#000000" />
<TextView
android:id="@+id/but11"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="Price: 8,000Rs"
android:textColor="#000000" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
<ImageView
android:id="@+id/cartage"
android:layout_width="214dp"
android:layout_height="40dp"
android:layout_gravity="center"
android:src="@drawable/addd" />
<Button android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="5dip"
android:layout_gravity="right"
android:id="@+id/ButtonViewCart"
android:text="View Shopping Cart"></Button>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
this is my Home1Full.java class,i am adding product from Test2Activity Class and Home1Full class but just showing Test2Activity product in ShoppinCartActivity list view.
ProductDetailsActivity.java
package com.prod;
import java.util.List;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.TextView;
import android.widget.Toast;
public class ProductDetailsActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.productdetails);
List<Product> catalog = ShoppingCartHelper.getCatalog(getResources());
int productIndex = getIntent().getExtras().getInt(
ShoppingCartHelper.PRODUCT_INDEX);
final Product selectedProduct = catalog.get(productIndex);
// Set the proper image and text
ImageView productImageView = (ImageView) findViewById(R.id.ImageViewProduct);
productImageView.setImageDrawable(selectedProduct.productImage);
TextView productTitleTextView = (TextView) findViewById(R.id.TextViewProductTitle);
productTitleTextView.setText(selectedProduct.title);
TextView productDetailsTextView = (TextView) findViewById(R.id.TextViewProductDetails);
productDetailsTextView.setText(selectedProduct.description);
TextView productPriceTextView = (TextView) findViewById(R.id.TextViewProductPrice);
productPriceTextView.setText("$" + selectedProduct.price);
// Update the current quantity in the cart
TextView textViewCurrentQuantity = (TextView) findViewById(R.id.textViewCurrentlyInCart);
textViewCurrentQuantity.setText("Currently in Cart: "
+ ShoppingCartHelper.getProductQuantity(selectedProduct));
// Save a reference to the quantity edit text
final EditText editTextQuantity = (EditText) findViewById(R.id.editTextQuantity);
Button addToCartButton = (Button) findViewById(R.id.ButtonAddToCart);
addToCartButton.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
Intent viewShoppingCartIntent = new Intent(getBaseContext(), ShoppingCartActivity.class);
startActivity(viewShoppingCartIntent);
// Check to see that a valid quantity was entered
int quantity = 0;
try {
quantity = Integer.parseInt(editTextQuantity.getText()
.toString());
if (quantity < 0) {
Toast.makeText(getBaseContext(),
"Please enter a quantity of 0 or higher",
Toast.LENGTH_SHORT).show();
return;
}
} catch (Exception e) {
Toast.makeText(getBaseContext(),
"Please enter a numeric quantity",
Toast.LENGTH_SHORT).show();
return;
}
// If we make it here, a valid quantity was entered
ShoppingCartHelper.setQuantity(selectedProduct, quantity);
// Close the activity
finish();
}});
}}
productdetails.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:background="#ffffff"
android:orientation="vertical">
<LinearLayout android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/LinearLayoutHeader"
android:orientation="horizontal">
<ImageView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/ImageViewProduct"
android:adjustViewBounds="true"
android:scaleType="fitXY"
android:src="@drawable/mainpic"
android:layout_margin="5dip"></ImageView>
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/TextViewProductTitle"
android:layout_gravity="center"
android:layout_margin="5dip"
android:textSize="26dip"
android:text="Dead or Alive"
android:textColor="#000000"></TextView>
</LinearLayout>
<TextView
android:layout_height="wrap_content"
android:id="@+id/TextViewProductDetails"
android:layout_width="fill_parent"
android:layout_margin="5dip"
android:layout_weight="1"
android:textColor="#000000"
android:text="Product description"></TextView>
<LinearLayout android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:id="@+id/linearLayoutCurrentlyInCart">
<TextView android:id="@+id/textViewCurrentlyInCart"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="20dip"
android:textColor="#000000"
android:text="Currently in Cart:"
android:layout_margin="5dip"></TextView>
</LinearLayout>
<LinearLayout android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:id="@+id/linearLayoutAddLayout"
android:orientation="horizontal"
android:layout_margin="5dip">
<TextView android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Quantity:"
android:textColor="#000000"></TextView>
<EditText android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="1"
android:gravity="right"
android:id="@+id/editTextQuantity"
android:inputType="number"></EditText>
<Button android:id="@+id/ButtonAddToCart"
android:layout_gravity="right"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="Set Quantity"></Button></LinearLayout>
<LinearLayout android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:id="@+id/linearLayoutAddLayoutPrice"
android:orientation="horizontal"
android:layout_margin="5dip">
<ImageView
android:id="@+id/img1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="left"
android:src="@drawable/bicon" />
<TextView android:layout_height="wrap_content"
android:id="@+id/TextViewProductPrice"
android:layout_width="fill_parent"
android:layout_margin="5dip"
android:textColor="#000000"
android:text="Product Price"
android:textStyle="bold"></TextView>
</LinearLayout>
</LinearLayout>
ProductAdapter.java
package com.prod;
import java.util.List;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.ImageView;
import android.widget.TextView;
public class ProductAdapter extends BaseAdapter {
private List<Product> mProductList;
private LayoutInflater mInflater;
private boolean mShowQuantity;
public ProductAdapter(List<Product> list, LayoutInflater inflater, boolean showQuantity) {
mProductList = list;
mInflater = inflater;
mShowQuantity = showQuantity;
}
public int getCount() {
return mProductList.size();
}
public Object getItem(int position) {
return mProductList.get(position);
}
public long getItemId(int position) {
return position;
}
public View getView(int position, View convertView, ViewGroup parent) {
final ViewItem item;
if (convertView == null) {
convertView = mInflater.inflate(R.layout.item, null);
item = new ViewItem();
item.productImageView = (ImageView) convertView
.findViewById(R.id.ImageViewItem);
item.productTitle = (TextView) convertView
.findViewById(R.id.TextViewItem);
item.productQuantity = (TextView) convertView
.findViewById(R.id.textViewQuantity);
convertView.setTag(item);
} else {
item = (ViewItem) convertView.getTag();
}
Product curProduct = mProductList.get(position);
item.productImageView.setImageDrawable(curProduct.productImage);
item.productTitle.setText(curProduct.title);
// Show the quantity in the cart or not
if (mShowQuantity) {
item.productQuantity.setText("Quantity: "
+ ShoppingCartHelper.getProductQuantity(curProduct));
} else {
// Hid the view
item.productQuantity.setVisibility(View.GONE);
}
return convertView;
}
private class ViewItem {
ImageView productImageView;
TextView productTitle;
TextView productQuantity;
}
}
item.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="wrap_content" android:orientation="vertical"
android:layout_width="fill_parent" android:id="@+id/LinearLayoutItem">
<LinearLayout android:id="@+id/linearLayoutDetails"
android:orientation="horizontal" android:layout_height="fill_parent"
android:layout_width="fill_parent">
<ImageView android:layout_margin="5dip" android:id="@+id/ImageViewItem"
android:layout_height="wrap_content" android:layout_width="100dip"></ImageView>
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_gravity="center"
android:layout_margin="5dip" android:id="@+id/TextViewItem"
android:textSize="26dip" android:text="Book Title" android:textColor="#000000"
android:minLines="2" android:maxWidth="150dip"></TextView>
<TextView android:id="@+id/TextView01" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_weight="1"></TextView>
</LinearLayout>
<LinearLayout android:id="@+id/linearLayoutQuantity"
android:orientation="horizontal" android:layout_width="wrap_content"
android:layout_margin="5dip" android:layout_height="wrap_content"
android:layout_gravity="right">
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content" android:text="Quantity:"
android:textSize="18dip"
android:textColor="#000000"
android:id="@+id/textViewQuantity">
</TextView>
</LinearLayout>
</LinearLayout>
ShoppingCartActivity.java
package com.prod;
import java.util.List;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.AdapterView;
import android.widget.ImageView;
import android.widget.ListView;
import android.widget.TextView;
import android.widget.AdapterView.OnItemClickListener;
public class ShoppingCartActivity extends Activity {
private List<Product> mCartList;
private ProductAdapter mProductAdapter;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.shoppingcart);
ImageView imge1 = (ImageView) findViewById(R.id.img1);
imge1.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
Intent myIntent = new Intent(ShoppingCartActivity.this,Home1Full.class);
startActivityForResult(myIntent, 0);
}
});
mCartList = ShoppingCartHelper.getCartList();
// Make sure to clear the selections
for(int i=0; i<mCartList.size(); i++) {
mCartList.get(i).selected = false;
}
// Create the list
final ListView listViewCatalog = (ListView) findViewById(R.id.ListViewCatalog);
mProductAdapter = new ProductAdapter(mCartList, getLayoutInflater(), true);
listViewCatalog.setAdapter(mProductAdapter);
listViewCatalog.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView<?> parent, View view, int position,
long id) {
Intent productDetailsIntent = new Intent(getBaseContext(),ProductDetailsActivity.class);
productDetailsIntent.putExtra(ShoppingCartHelper.PRODUCT_INDEX, position);
startActivity(productDetailsIntent);
}
});
}
@Override
protected void onResume() {
super.onResume();
// Refresh the data
if(mProductAdapter != null) {
mProductAdapter.notifyDataSetChanged();
}
double subTotal = 0;
for(Product p : mCartList) {
int quantity = ShoppingCartHelper.getProductQuantity(p);
subTotal += p.price * quantity;
}
TextView productPriceTextView = (TextView) findViewById(R.id.TextViewSubtotal);
productPriceTextView.setText("Subtotal: $" + subTotal);
}
}</LinearLayout>
shoppingcart.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_height="fill_parent"
android:layout_width="fill_parent" android:background="#ffffff">
<TextView android:id="@+id/TextView01" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:textColor="#000000"
android:textSize="24dip" android:layout_margin="5dip" android:text="Shopping Cart"></TextView>
<TextView android:id="@+id/textView1" android:layout_width="wrap_content" android:layout_height="wrap_content"
android:layout_margin="5dip" android:text="Click on a product to edit the quantity"></TextView>
<TextView android:layout_height="wrap_content" android:id="@+id/TextViewSubtotal"
android:layout_width="fill_parent" android:layout_margin="5dip"
android:textColor="#000000" android:text="Subtotal" android:textStyle="bold"></TextView>
<ListView android:layout_height="wrap_content"
android:layout_weight="1" android:id="@+id/ListViewCatalog"
android:layout_width="fill_parent" android:background="#ffffff"
android:cacheColorHint="#ffffff" android:clickable="true"
android:choiceMode="multipleChoice">
</ListView>
<LinearLayout android:layout_width="wrap_content"
android:layout_height="wrap_content" android:orientation="horizontal"
android:layout_margin="5dip"
android:id="@+id/LinearLayoutCheckout" android:layout_gravity="right">
<ImageView
android:id="@+id/img1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="left"
android:src="@drawable/bicon" />
<Button android:id="@+id/Button02" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:text="Proceed to Checkout"></Button>
</LinearLayout>
</LinearLayout>
ShoppingCartHelper.java
package com.prod;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Vector;
import android.content.res.Resources;
public class ShoppingCartHelper {
public static final String PRODUCT_INDEX = "PRODUCT_INDEX";
private static List<Product> catalog;
private static Map<Product, ShoppingCartEntry> cartMap = new HashMap<Product, ShoppingCartEntry>();
public static List<Product> getCatalog(Resources res){
if(catalog == null) {
catalog = new Vector<Product>();
catalog.add(new Product("Dead or Alive", res
.getDrawable(R.drawable.mainpic),
"Dead or Alive by Tom Clancy with Grant Blackwood", 29.99));
catalog.add(new Product("Switch", res
.getDrawable(R.drawable.hme5),
"Switch by Chip Heath and Dan Heath", 24.99));
/*catalog.add(new Product("Watchmen", res
.getDrawable(R.drawable.ima7),
"Watchmen by Alan Moore and Dave Gibbons", 14.99));*/
}
return catalog;
}
public static void setQuantity(Product product, int quantity) {
// Get the current cart entry
ShoppingCartEntry curEntry = cartMap.get(product);
// If the quantity is zero or less, remove the products
if(quantity <= 0) {
if(curEntry != null)
removeProduct(product);
return;
}
// If a current cart entry doesn't exist, create one
if(curEntry == null) {
curEntry = new ShoppingCartEntry(product, quantity);
cartMap.put(product, curEntry);
return;
}
// Update the quantity
curEntry.setQuantity(quantity);
}
public static int getProductQuantity(Product product) {
// Get the current cart entry
ShoppingCartEntry curEntry = cartMap.get(product);
if(curEntry != null)
return curEntry.getQuantity();
return 0;
}
public static void removeProduct(Product product) {
cartMap.remove(product);
}
public static List<Product> getCartList() {
List<Product> cartList = new Vector<Product>(cartMap.keySet().size());
for(Product p : cartMap.keySet()) {
cartList.add(p);
}
return cartList;
}
}