Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
U
uBus
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chiara Veronica Señires
uBus
Commits
ec6e6690
Commit
ec6e6690
authored
Nov 08, 2015
by
ejcris
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Searching bus schedules - Starting terminal and Destination only
parent
a9b16be7
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
229 additions
and
61 deletions
+229
-61
ActionBarAttempt.java
...ava/com/example/pearlsantos/project/ActionBarAttempt.java
+1
-1
Confirmation.java
...in/java/com/example/pearlsantos/project/Confirmation.java
+9
-11
Login_Screen.java
...in/java/com/example/pearlsantos/project/Login_Screen.java
+47
-22
ReservingSeats.java
.../java/com/example/pearlsantos/project/ReservingSeats.java
+8
-6
SearchFragment.java
.../java/com/example/pearlsantos/project/SearchFragment.java
+158
-21
fragment_search.xml
...-7-15/Project/app/src/main/res/layout/fragment_search.xml
+6
-0
No files found.
mobile-app/11-7-15/Project/app/src/main/java/com/example/pearlsantos/project/ActionBarAttempt.java
View file @
ec6e6690
...
...
@@ -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
();
...
...
mobile-app/11-7-15/Project/app/src/main/java/com/example/pearlsantos/project/Confirmation.java
View file @
ec6e6690
...
...
@@ -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();
//
}
//
});
}
}
mobile-app/11-7-15/Project/app/src/main/java/com/example/pearlsantos/project/Login_Screen.java
View file @
ec6e6690
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
);
}
}
mobile-app/11-7-15/Project/app/src/main/java/com/example/pearlsantos/project/ReservingSeats.java
View file @
ec6e6690
...
...
@@ -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
)
-
nOS
1
;
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
();
...
...
mobile-app/11-7-15/Project/app/src/main/java/com/example/pearlsantos/project/SearchFragment.java
View file @
ec6e6690
This diff is collapsed.
Click to expand it.
mobile-app/11-7-15/Project/app/src/main/res/layout/fragment_search.xml
View file @
ec6e6690
...
...
@@ -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>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment