summaryrefslogtreecommitdiffstats
path: root/sca-java-1.x/trunk/tutorials/travelsample/contrib/scatours-android-ui/src/scatours/android/TripSearch.java
diff options
context:
space:
mode:
authorslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2010-01-24 14:54:37 +0000
committerslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2010-01-24 14:54:37 +0000
commitf875ca919485ba5a1195f27d56537551a54b89ef (patch)
tree92c87dadfd0f410f7ff2879741045b0019233d62 /sca-java-1.x/trunk/tutorials/travelsample/contrib/scatours-android-ui/src/scatours/android/TripSearch.java
parent3b66a3aca132f59e9e2fcaf3ee7f4f53096d4d55 (diff)
Contrib holds material that's no longer used in the same. Don't need it in trunk but it's still in the sandbox if you really need anything from here.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@902577 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-1.x/trunk/tutorials/travelsample/contrib/scatours-android-ui/src/scatours/android/TripSearch.java')
-rw-r--r--sca-java-1.x/trunk/tutorials/travelsample/contrib/scatours-android-ui/src/scatours/android/TripSearch.java186
1 files changed, 0 insertions, 186 deletions
diff --git a/sca-java-1.x/trunk/tutorials/travelsample/contrib/scatours-android-ui/src/scatours/android/TripSearch.java b/sca-java-1.x/trunk/tutorials/travelsample/contrib/scatours-android-ui/src/scatours/android/TripSearch.java
deleted file mode 100644
index b64c14a583..0000000000
--- a/sca-java-1.x/trunk/tutorials/travelsample/contrib/scatours-android-ui/src/scatours/android/TripSearch.java
+++ /dev/null
@@ -1,186 +0,0 @@
-package scatours.android;
-
-import scatours.SCAToursSearch;
-import scatours.SCAToursSearchProxy;
-import scatours.common.TripItem;
-import scatours.common.TripLeg;
-import android.app.Activity;
-import android.app.AlertDialog;
-import android.content.DialogInterface;
-import android.content.Intent;
-import android.os.Bundle;
-import android.util.Log;
-import android.view.View;
-import android.view.View.OnClickListener;
-import android.widget.AdapterView;
-import android.widget.ArrayAdapter;
-import android.widget.AutoCompleteTextView;
-import android.widget.Button;
-import android.widget.AdapterView.OnItemClickListener;
-import android.widget.AdapterView.OnItemSelectedListener;
-
-public class TripSearch extends Activity {
-
- static final String[] AIRPORT_CODES = new String[] {
- "LGW - London Gatwick Airport",
- "FLR - Luigi Ridolfi Airport",
- "SFO - San Francisco Airport",
- "GRU - Sao Paulo Airport",
- "GIG - Rio de Janeiro Airport"
- };
-
-
- private AutoCompleteTextView txtFromLocation,
- txtToLocation,
- txtDateStart,
- txtDateEnd,
- txtNumberOfPeople;
- private Button btnSearch;
-
-
- /** Called when the activity is first created. */
- @Override
- public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.search);
-
-
- ArrayAdapter adapter = new ArrayAdapter(this,android.R.layout.simple_dropdown_item_1line, AIRPORT_CODES);
-
- txtFromLocation = (AutoCompleteTextView) findViewById(R.id.edit_fromLocation);
- //ArrayAdapter adapterFrom = new ArrayAdapter(this,android.R.layout.simple_dropdown_item_1line, AIRPORT_CODES);
- txtFromLocation.setAdapter(adapter);
-
- txtToLocation = (AutoCompleteTextView) findViewById(R.id.edit_toLocation);
- //ArrayAdapter adapterTo = new ArrayAdapter(this,android.R.layout.simple_dropdown_item_1line, AIRPORT_CODES);
- txtToLocation.setAdapter(adapter);
-
- txtDateStart = (AutoCompleteTextView) findViewById(R.id.edit_date_start);
- txtDateEnd = (AutoCompleteTextView) findViewById(R.id.edit_date_end);
- txtNumberOfPeople = (AutoCompleteTextView) findViewById(R.id.edit_NumberOfPeople);
-
- btnSearch = (Button) this.findViewById(R.id.btnSearch);
-
- doListen();
- }
-
- private void doListen() {
-
- txtFromLocation.setOnItemClickListener(new OnItemClickListener() {
- public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
- Log.i(getString(R.string.app_name),">>Item Clicked: " +AIRPORT_CODES[position]);
- }
-
- });
-
- txtFromLocation.setOnItemSelectedListener(new OnItemSelectedListener() {
-
- public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {
- Log.i(getString(R.string.app_name),">>Item Selected: " +AIRPORT_CODES[position]);
- }
-
- public void onNothingSelected(AdapterView<?> parent) {
- Log.i(getString(R.string.app_name),">>Selection cleared");
- }
-
- });
-
-
- //closeButton
- btnSearch.setOnClickListener( new OnClickListener() {
- public void onClick(View v) {
-
- doTripSearch(v);
- /*
- //Search trips here
- new AlertDialog.Builder(TripSearch.this)
- .setTitle("SCATour")
- .setMessage("You're about to search for trips !")
- .setIcon(R.drawable.icon)
- .setPositiveButton(R.string.alert_yes, new DialogInterface.OnClickListener() {
- public void onClick(DialogInterface dialog, int whichButton) {
-
- }})
- .setNegativeButton(R.string.alert_cancel, new DialogInterface.OnClickListener(){
- public void onClick(DialogInterface dialog, int which) {
-
- }
- })
- .show();*/
- }
- });
-
- }
-
-
- private void doTripSearch(View view) {
- SCAToursSearch searchProxy = new SCAToursSearchProxy();
- TripLeg tripLeg = new TripLeg();
-
- Log.i(getString(R.string.app_name),"From : " + txtFromLocation.getText().toString() );
- Log.i(getString(R.string.app_name),"To : " + txtToLocation.getText().toString() );
- Log.i(getString(R.string.app_name),"Start Date : " + txtDateStart.getText().toString() );
- Log.i(getString(R.string.app_name),"End Date : " + txtDateEnd.getText().toString() );
- Log.i(getString(R.string.app_name),"NumberOfPeople : " + txtNumberOfPeople.getText().toString() );
-
- tripLeg.setFromLocation("LGW");
- tripLeg.setToLocation("FLR");
- tripLeg.setFromDate("06/12/09");
- tripLeg.setToDate("13/12/09");
- tripLeg.setNoOfPeople("2");
-
- TripItem[] tripsAvailable = searchProxy.search(tripLeg);
- Log.i(getString(R.string.app_name),"Found " + tripsAvailable.length + " trips");
-
- Log.i(getString(R.string.app_name),"Calling Results view...");
-
- displayTripSearchResults(tripsAvailable);
-
- /*
- try {
- Intent resultView = new Intent(this, TripSearchResults.class);
- resultView.putExtra("results", tripsAvailable);
- startActivity(resultView);
- } catch(Exception e) {
- Log.e(getString(R.string.app_name), e.getMessage());
- }
- */
-
- //TripSearchResults searchResults = new TripSearchResults(tripsAvailable);
- //searchResults.setContentView(R.layout.search_results);
-
- Log.i(getString(R.string.app_name),"Called...");
-
- }
-
- private void displayTripSearchResults(TripItem[] tripsAvailable) {
-
- String result = "";
- for(TripItem item : tripsAvailable) {
- Log.i(getString(R.string.app_name), "Item type:" + item.getType());
- if (item.getType().equals(TripItem.TRIP)) {
- result += item.getDescription() + " (" + item.getCurrency() + " " + item.getPrice() + ")\n";
- }
- }
-
-
- //Search trips here
- new AlertDialog.Builder(TripSearch.this)
- .setTitle("SCATour")
- .setMessage("Found:\n" + result)
- .setIcon(R.drawable.icon)
- .setCancelable(false)
- .setPositiveButton(R.string.alert_yes, new DialogInterface.OnClickListener() {
- public void onClick(DialogInterface dialog, int whichButton) {
-
- }})
- .setNegativeButton(R.string.alert_cancel, new DialogInterface.OnClickListener(){
- public void onClick(DialogInterface dialog, int which) {
-
- }
- })
- .show();
-
- }
-
-} \ No newline at end of file