Back to project page Go2-Rennes.
The source code is released under:
GNU General Public License
If you think the Android project Go2-Rennes listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/******************************************************************************* * Copyright (c) 2011 Michel DAVID mimah35-at-gmail.com * /*from w w w. j a va2 s . c o m*/ * 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 3 of the License. * * 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, see <http://www.gnu.org/licenses/>. ******************************************************************************/ package fr.gotorennes; import java.util.ArrayList; import java.util.Collections; import java.util.List; import android.content.Context; import android.content.Intent; import android.graphics.Bitmap; import android.os.Bundle; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.AdapterView; import android.widget.AdapterView.OnItemClickListener; import android.widget.ArrayAdapter; import android.widget.ImageView; import android.widget.ListView; import android.widget.TextView; import fr.gotorennes.domain.Ligne; import fr.gotorennes.domain.SensCirculation; import fr.gotorennes.domain.Station; import fr.gotorennes.util.BackgroundTask; import fr.gotorennes.view.FilterSortBar; import fr.gotorennes.view.TitleBar; public class BusStationsActivity extends AbstractActivity { private List<Station> stations = new ArrayList<Station>(); private ArrayAdapter<Station> arrayAdapter; private Ligne ligne; private SensCirculation sens; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.busstations); } @Override protected String getTrackingName() { return "stationsBus"; } @Override protected void init(Intent intent) { arrayAdapter = new BusStationAdapter(this, stations); FilterSortBar filterSortBar = (FilterSortBar) findViewById(FilterSortBar.ID); filterSortBar.setArrayAdapter(arrayAdapter); ListView listView = (ListView) findViewById(R.id.stations); listView.setAdapter(arrayAdapter); listView.setOnItemClickListener(new OnItemClickListener() { @Override public void onItemClick(AdapterView<?> adapter, View view, int position, long id) { Station station = (Station) adapter.getItemAtPosition(position); Intent intent = new Intent(getApplicationContext(), BusArretActivity.class); intent.putExtra("station", station); intent.putExtra("sens", sens); intent.putExtra("ligne", ligne); startActivity(intent); } }); populate(intent); } protected void populate(Intent intent) { ligne = intent.getParcelableExtra("ligne"); sens = intent.getParcelableExtra("sens"); TitleBar titleBar = (TitleBar) findViewById(TitleBar.ID); Bitmap icon = goToRennes.getBusStationService().getBitmapIcon(this, ligne.id); titleBar.setIcon(icon); titleBar.setTitle(ligne.nom); titleBar.setSubtitle(getString(R.string.vers) + sens.nom); BackgroundTask<List<Station>> backgroundTask = new BackgroundTask<List<Station>>() { @Override protected List<Station> execute() { List<Station> stations = goToRennes.getBusDao().getStations(ligne, sens); Collections.sort(stations); return stations; } @Override protected void callback(List<Station> result) { if (result != null) { stations.clear(); stations.addAll(result); arrayAdapter.notifyDataSetChanged(); } } }; backgroundTask.start(this); } class BusStationAdapter extends ArrayAdapter<Station> { public BusStationAdapter(Context context, List<Station> stations) { super(context, 0, stations); } @Override public View getView(int position, View convertView, ViewGroup parent) { View view = convertView; if (view == null) { LayoutInflater vi = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE); view = vi.inflate(R.layout.busstation_listitem, null); } Station station = getItem(position); TextView name = (TextView) view.findViewById(R.id.name); name.setText(station.nom); ImageView accessibleIcon = (ImageView) view.findViewById(R.id.accessible); accessibleIcon.setVisibility(ligne.accessible && station.accessible ? View.VISIBLE : View.GONE); TextView distance = (TextView) view.findViewById(R.id.distance); distance.setText(getMyLocationFormattedDistance(station.latitude, station.longitude)); return view; } } public void showMap(View view) { Intent intentMap = new Intent(getApplicationContext(), BusStationsMapActivity.class); intentMap.putExtra("ligne", ligne); intentMap.putExtra("sens", sens); startActivity(intentMap); } }