aboutsummaryrefslogtreecommitdiff
path: root/src/net/cbaines/suma/StopView.java
blob: dc023aae01bd4c84368ba211458cf7360a512a6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/*
 * Southampton University Map App
 * Copyright (C) 2011  Christopher Baines
 * 
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */

package net.cbaines.suma;

import java.sql.SQLException;
import java.text.DateFormat;

import android.content.Context;
import android.view.Gravity;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.LinearLayout;
import android.widget.TextView;
import android.widget.Toast;

import com.j256.ormlite.android.apptools.OpenHelperManager;
import com.j256.ormlite.dao.Dao;

public class StopView extends LinearLayout implements OnClickListener {

    // private final ImageView icon;

    // private static final String TAG = "StopView";

    private final TextView name;
    private final TextView time;
    private String onClickMessage = "";
    private final Context context;

    public StopView(Context context, Stop stop) {
	super(context);

	this.context = context;

	this.setOrientation(HORIZONTAL);

	name = new TextView(context);
	name.setTextSize(22f);

	time = new TextView(context);
	time.setTextSize(22f);
	time.setGravity(Gravity.RIGHT);

	setStop(stop);

	addView(name, new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
	addView(time, new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT));
    }

    public void setStop(Stop stop) {

	// Log.i(TAG, "Time of arival " + stop.arivalTime);

	name.setText(stop.bus.getName());
	time.setText(stop.getTimeToArival());

	DatabaseHelper helper = OpenHelperManager.getHelper(context, DatabaseHelper.class);

	try {
	    Dao<Bus, Integer> busDao = helper.getBusDao();

	    busDao.refresh(stop.bus);

	    if (stop.bus.id != null) {
		onClickMessage = "Bus " + stop.bus.toString() + " at " + DateFormat.getTimeInstance(DateFormat.SHORT).format(stop.arivalTime);
	    } else {
		onClickMessage = "Unidentified bus (" + stop.bus.getName() + ") at " + DateFormat.getTimeInstance(DateFormat.SHORT).format(stop.arivalTime);
	    }
	} catch (SQLException e) {
	    e.printStackTrace();
	}

	this.setOnClickListener(this);
    }

    public void onClick(View v) {
	Toast.makeText(context, onClickMessage, Toast.LENGTH_SHORT).show();

    }

}