Closed rockgecko-development closed 7 years ago
Also added tram class E2
to UIUtils
. This would need the following update script:
WITH RECURSIVE
cnt(x) AS (VALUES(6051) UNION ALL SELECT x+1 FROM cnt WHERE x<6070)
INSERT INTO trams (class, number) SELECT 'E2', x FROM cnt;
I've built a new DB and included E2 class trams now. Thanks
New dialog to enter a vehicle number, and go to the
TramRunActivity
. Reused the search button on the home screen for now (can still use the search button in action bar for other searches). Changed the dialog import to useandroid.support.v7.app.AlertDialog
, so updated the About dialog style to match. ChangedTramRunActivity
to prepend tram class in title bar, and navigate toStopDetailsActivity
on stop click.