Back to project page BusTicketer.
The source code is released under:
Copyright (c) 2013, Nelspike All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Red...
If you think the Android project BusTicketer 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 bus.ticketer.runnable; // w w w .j av a 2 s . c o m import java.util.ArrayList; import android.util.SparseArray; import android.view.View; import android.widget.TextView; import bus.ticketer.objects.Ticket; import bus.ticketer.passenger.BusTicketer; import bus.ticketer.passenger.R; public class BuyRunnable implements Runnable { private BusTicketer app; private View view; public BuyRunnable(BusTicketer app, View view) { this.app = app; this.view = view; } @Override public void run() { TextView t1TicketsQuantity = (TextView) view .findViewById(R.id.t1_ticket_quantity); TextView t2TicketsQuantity = (TextView) view .findViewById(R.id.t2_ticket_quantity); TextView t3TicketsQuantity = (TextView) view .findViewById(R.id.t3_ticket_quantity); SparseArray<ArrayList<Ticket>> tickets = app.getTickets(); t1TicketsQuantity.setText(tickets.get(1).size() + ""); t2TicketsQuantity.setText(tickets.get(2).size() + ""); t3TicketsQuantity.setText(tickets.get(3).size() + ""); } }