Commit ec6e6690 authored by ejcris's avatar ejcris

Searching bus schedules - Starting terminal and Destination only

parent a9b16be7
......@@ -166,7 +166,7 @@ public class ActionBarAttempt extends AppCompatActivity {
switch(position){
case 0:
Fragment fa = new SearchFragment();
fragment = new SearchFragment();
break;
case 1:
fragment = new Schedules();
......
......@@ -48,7 +48,7 @@ public class Confirmation extends Dialog{
t = busSchedule.getString("to", "").trim();
dT = busSchedule.getString("depTime", "").trim();
sA = busSchedule.getString("seatsAvailable", "").trim();
//c = busSchedule.getString("cost", "").trim();
c = busSchedule.getString("cost", "").trim();
nOS = busSchedule.getString("noOfSeats", "").trim();
a = busSchedule.getString("arrival", "").trim();
}
......@@ -59,7 +59,6 @@ public class Confirmation extends Dialog{
TextView from = (TextView) findViewById(R.id.from);
TextView to = (TextView) findViewById(R.id.to);
TextView depTime = (TextView) findViewById(R.id.depTime);
TextView seatsAvailable = (TextView) findViewById(R.id.seatsAvailable);
TextView purchase = (TextView) findViewById(R.id.purchase);
TextView noOfSeats =(TextView) findViewById(R.id.noOfSeats);
TextView seatsPurchased =(TextView) findViewById(R.id.seatsPurchased);
......@@ -70,7 +69,6 @@ public class Confirmation extends Dialog{
from.setText(f);
to.setText(t);
depTime.setText(dT);
seatsAvailable.setText(sA);
arrival.setText(a);
totalCost = Double.parseDouble(c)*Double.parseDouble(nOS);
purchase.setText(Double.toString(totalCost));
......@@ -132,14 +130,14 @@ public class Confirmation extends Dialog{
}
});
Button cancel = (Button) findViewById(R.id.cancel);
cancel.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
cancel();
}
});
// Button cancel = (Button) findViewById(R.id.cancel);
// cancel.setOnClickListener(new View.OnClickListener() {
//
// @Override
// public void onClick(View v) {
// cancel();
// }
// });
}
}
package com.example.pearlsantos.project;
import android.app.ProgressDialog;
import android.content.Intent;
import android.support.v7.app.ActionBar;
import android.support.v7.app.AppCompatActivity;
......@@ -19,6 +20,7 @@ import com.parse.ParseUser;
public class Login_Screen extends AppCompatActivity {
//public final static String EXTRA_MESSAGE = ;
String name, password;
ProgressDialog progress;
@Override
protected void onCreate(Bundle savedInstanceState) {
......@@ -35,29 +37,51 @@ public class Login_Screen extends AppCompatActivity {
submit.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
EditText n = (EditText) findViewById(R.id.name);
name = n.getText().toString();
EditText p = (EditText) findViewById(R.id.password);
password = p.getText().toString();
ParseUser.logInInBackground(name, password, new LogInCallback() {
public void done(ParseUser user, ParseException e) {
if (user != null) {
Intent intent = new Intent(Login_Screen.this, ActionBarAttempt.class);
//EditText editText = (EditText) findViewById(R.id.name);
//String message = editText.getText().toString();
//intent.putExtra(EXTRA_MESSAGE, message);
startActivity(intent);
finish();
} else {
//Log.d(e, "What happened?");
Toast.makeText(Login_Screen.this, "Name and phone number combination " +
"does not exist", Toast.LENGTH_LONG).show();
final ProgressDialog ringProgressDialog = ProgressDialog.show(Login_Screen.this,
"Maaring maghintay lamang ...", "Logging in ...", true);
ringProgressDialog.setCancelable(true);
new Thread(new Runnable() {
@Override
public void run() {
try {
EditText n = (EditText) findViewById(R.id.name);
name = n.getText().toString();
EditText p = (EditText) findViewById(R.id.password);
password = p.getText().toString();
ParseUser.logInInBackground(name, password, new LogInCallback() {
public void done(ParseUser user, ParseException e) {
if (user != null) {
Intent intent = new Intent(Login_Screen.this, ActionBarAttempt.class);
//EditText editText = (EditText) findViewById(R.id.name);
//String message = editText.getText().toString();
//intent.putExtra(EXTRA_MESSAGE, message);
startActivity(intent);
ringProgressDialog.dismiss();
finish();
} else {
//Log.d(e, "What happened?");
Toast.makeText(Login_Screen.this, "Name and phone number combination " +
"does not exist", Toast.LENGTH_LONG).show();
ringProgressDialog.dismiss();
}
}
});
Thread.sleep(10000);
} catch (Exception e) {
}
ringProgressDialog.dismiss();
}
}
});
}).start();
}
});
......@@ -94,4 +118,5 @@ public class Login_Screen extends AppCompatActivity {
startActivity(intent);
}
}
......@@ -18,7 +18,8 @@ import android.widget.Toast;
public class ReservingSeats extends Dialog {
SharedPreferences busSchedule;
EditText noOfSeats;
String bN, pN, f, t, dT, sA, c, nOS, a;
String sA;
int nOS;
NumberPicker tens;
NumberPicker ones;
......@@ -31,6 +32,7 @@ public class ReservingSeats extends Dialog {
{
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
setContentView(R.layout.activity_reserving_seats);
busSchedule = getContext().getSharedPreferences("bus", Context.MODE_PRIVATE);
// if(busSchedule!=null){
// bN = busSchedule.getString("busNum", "").trim();
......@@ -38,7 +40,7 @@ public class ReservingSeats extends Dialog {
// f = busSchedule.getString("from", "").trim();
// t = busSchedule.getString("to", "").trim();
// dT = busSchedule.getString("depTime", "").trim();
sA = busSchedule.getString("seatsAvailable", "").trim();
sA = busSchedule.getString("seatsAvailable", "").trim();
// c = busSchedule.getString("cost", "").trim();
// a = busSchedule.getString("arrival", "").trim();
// }
......@@ -56,7 +58,6 @@ public class ReservingSeats extends Dialog {
ones.setWrapSelectorWheel(true);
setContentView(R.layout.activity_reserving_seats);
// noOfSeats = (EditText) findViewById(R.id.noOfSeats);
// noOfSeats.setText("1");
......@@ -69,12 +70,13 @@ public class ReservingSeats extends Dialog {
NumberPicker tensSeats = (NumberPicker) findViewById(R.id.numberPicker);
NumberPicker unitSeats = (NumberPicker) findViewById(R.id.numberPicker2);
int nOS1 = (tensSeats.getValue()*10) + unitSeats.getValue();
nOS = (tensSeats.getValue()*10) + unitSeats.getValue();
int remainingSeats = Integer.parseInt(sA) - nOS1;
int remainingSeats = Integer.parseInt(sA) - nOS;
if (remainingSeats > 0) {
SharedPreferences.Editor edit = busSchedule.edit();
edit.putString("noOfSeats", noOfSeats.getText().toString().trim());
edit.putString("noOfSeats", Integer.toString(nOS).trim());
edit.putString("seatsAvailable", Integer.toString(remainingSeats).trim());
edit.commit();
Confirmation confirm = new Confirmation(getContext());
confirm.show();
......
......@@ -107,5 +107,11 @@
</LinearLayout>
<ListView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/schedule"
android:layout_gravity="center_horizontal" />
</LinearLayout>
</LinearLayout>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment