I had a object list in my activity and i want to pass that object list to another activity to generate a list view in that activity,is it possible?
For simple string values i had used the following code...
Intent intentprint=new Intent(OrdersScreen.this,PrintTemplate.class);
        String pbal=String.valueOf(Balance.getText());
        intentprint.putExtra("Branch", bname);
        intentprint.putExtra("Party", pname);
        intentprint.putExtra("Balance",pbal);
        intentprint.putExtra("Billvalue", bal);
        startActivity(intentprint);
Any help will be appreciated..
 
     
     
    