Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
Theatre Booking App
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
a-j.towse
Theatre Booking App
Commits
5681a163
Commit
5681a163
authored
May 30, 2023
by
a-j.towse
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
semi working cancel booking
parent
ab08d7f6
Changes
13
Show whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
467 additions
and
22 deletions
+467
-22
AndroidManifest.xml
app/src/main/AndroidManifest.xml
+8
-0
BookingsPageAdapter.java
...va/com/example/no1theatrecompany/BookingsPageAdapter.java
+59
-0
DBConnector.java
.../main/java/com/example/no1theatrecompany/DBConnector.java
+116
-0
IdleData2.java
...rc/main/java/com/example/no1theatrecompany/IdleData2.java
+17
-0
IdleViewHolder.java
...in/java/com/example/no1theatrecompany/IdleViewHolder.java
+1
-1
IdleViewHolder2.java
...n/java/com/example/no1theatrecompany/IdleViewHolder2.java
+33
-0
MainActivity.java
...main/java/com/example/no1theatrecompany/MainActivity.java
+8
-4
myBookingsActivity.java
...ava/com/example/no1theatrecompany/myBookingsActivity.java
+49
-0
performanceInfoPage.java
...va/com/example/no1theatrecompany/performanceInfoPage.java
+23
-2
activity_main.xml
app/src/main/res/layout/activity_main.xml
+11
-10
booking_item.xml
app/src/main/res/layout/booking_item.xml
+84
-0
mybookings_page.xml
app/src/main/res/layout/mybookings_page.xml
+53
-0
performance_item.xml
app/src/main/res/layout/performance_item.xml
+5
-5
No files found.
app/src/main/AndroidManifest.xml
View file @
5681a163
...
@@ -40,6 +40,14 @@
...
@@ -40,6 +40,14 @@
android:name=
".performanceInfoPage"
android:name=
".performanceInfoPage"
android:exported=
"false"
>
android:exported=
"false"
>
<meta-data
android:name=
"android.app.lib_name"
android:value=
""
/>
</activity>
<activity
android:name=
".myBookingsActivity"
android:exported=
"false"
>
<meta-data
<meta-data
android:name=
"android.app.lib_name"
android:name=
"android.app.lib_name"
android:value=
""
/>
android:value=
""
/>
...
...
app/src/main/java/com/example/no1theatrecompany/BookingsPageAdapter.java
0 → 100644
View file @
5681a163
package
com
.
example
.
no1theatrecompany
;
import
android.content.Context
;
import
android.content.Intent
;
import
android.telecom.Call
;
import
android.view.LayoutInflater
;
import
android.view.View
;
import
android.view.ViewGroup
;
import
androidx.annotation.NonNull
;
import
androidx.recyclerview.widget.RecyclerView
;
import
com.example.no1theatrecompany.IdleViewHolder
;
import
java.util.List
;
public
class
BookingsPageAdapter
extends
RecyclerView
.
Adapter
<
IdleViewHolder2
>
{
private
List
<
IdleData2
>
mData
;
private
LayoutInflater
mInflater
;
Context
context
;
BookingsPageAdapter
(
Context
context
,
List
<
IdleData2
>
data
)
{
this
.
mInflater
=
LayoutInflater
.
from
(
context
);
this
.
mData
=
data
;
}
@Override
public
IdleViewHolder2
onCreateViewHolder
(
ViewGroup
parent
,
int
viewType
)
{
View
view
=
mInflater
.
inflate
(
R
.
layout
.
booking_item
,
parent
,
false
);
return
new
IdleViewHolder2
(
view
);
}
@Override
public
void
onBindViewHolder
(
@NonNull
IdleViewHolder2
holder
,
int
position
)
{
IdleData2
data
=
mData
.
get
(
position
);
holder
.
setData
(
data
);
holder
.
cancelBookingBtnButton
.
setOnClickListener
(
new
View
.
OnClickListener
()
{
@Override
public
void
onClick
(
View
view
)
{
DBConnector
connector
=
new
DBConnector
(
context
,
null
);
System
.
out
.
println
(
mData
.
get
(
position
).
name
);
connector
.
cancelBooking
(
mData
.
get
(
position
).
name
);
}
});
}
@Override
public
int
getItemCount
()
{
return
mData
.
size
();
}
}
\ No newline at end of file
app/src/main/java/com/example/no1theatrecompany/DBConnector.java
View file @
5681a163
...
@@ -43,6 +43,12 @@ public class DBConnector extends SQLiteOpenHelper {
...
@@ -43,6 +43,12 @@ public class DBConnector extends SQLiteOpenHelper {
private
static
final
String
COLUMN_TIXRIVERBANK
=
"tixRiverBank"
;
private
static
final
String
COLUMN_TIXRIVERBANK
=
"tixRiverBank"
;
private
static
final
String
COLUMN_TIXINCIRC
=
"tixInCirc"
;
private
static
final
String
COLUMN_TIXINCIRC
=
"tixInCirc"
;
private
static
final
String
COLUMN_TIXOUTCIRC
=
"tixOutCirc"
;
private
static
final
String
COLUMN_TIXOUTCIRC
=
"tixOutCirc"
;
//DB columns for TABLE_USERS
private
static
final
String
TABLE_BOOKINGS
=
"bookings"
;
private
static
final
String
COLUMN_BOOKINGID
=
"bookingID"
;
private
static
final
String
COLUMN_PERFORMANCENAME
=
"performanceName"
;
private
static
final
String
COLUMN_TICKETINFO
=
"ticketInfo1"
;
//Constructor method - create DB
//Constructor method - create DB
public
DBConnector
(
Context
context
,
SQLiteDatabase
.
CursorFactory
factory
)
{
public
DBConnector
(
Context
context
,
SQLiteDatabase
.
CursorFactory
factory
)
{
...
@@ -85,6 +91,15 @@ public class DBConnector extends SQLiteOpenHelper {
...
@@ -85,6 +91,15 @@ public class DBConnector extends SQLiteOpenHelper {
//Execute query
//Execute query
db
.
execSQL
(
CREATE_table2
);
db
.
execSQL
(
CREATE_table2
);
//Build query that creates table
String
CREATE_table3
=
"CREATE TABLE "
+
TABLE_BOOKINGS
+
"("
+
COLUMN_BOOKINGID
+
" INTEGER PRIMARY KEY, "
+
COLUMN_PERFORMANCENAME
+
" TEXT, "
+
COLUMN_TICKETINFO
+
" TEXT)"
;
//Execute query
db
.
execSQL
(
CREATE_table3
);
ContentValues
play1
=
new
ContentValues
();
//Create new row object
ContentValues
play1
=
new
ContentValues
();
//Create new row object
play1
.
put
(
COLUMN_NAME
,
"The Merchant of Venice by William Shakespeare"
);
play1
.
put
(
COLUMN_NAME
,
"The Merchant of Venice by William Shakespeare"
);
play1
.
put
(
COLUMN_DATE
,
"Sunday April 23 2023"
);
play1
.
put
(
COLUMN_DATE
,
"Sunday April 23 2023"
);
...
@@ -258,7 +273,108 @@ public class DBConnector extends SQLiteOpenHelper {
...
@@ -258,7 +273,108 @@ public class DBConnector extends SQLiteOpenHelper {
return
performanceInfoList
;
return
performanceInfoList
;
}
}
public
void
updateDBTickets
(
ArrayList
currentPerformance
)
{
ContentValues
newValue
=
new
ContentValues
();
ContentValues
newValue1
=
new
ContentValues
();
ContentValues
newValue2
=
new
ContentValues
();
ContentValues
newValue3
=
new
ContentValues
();
ContentValues
newValue4
=
new
ContentValues
();
ContentValues
newValue5
=
new
ContentValues
();
ContentValues
newValue6
=
new
ContentValues
();
ContentValues
newValue7
=
new
ContentValues
();
ContentValues
newValue8
=
new
ContentValues
();
newValue
.
put
(
COLUMN_TIXSEAT
,
(
String
)
currentPerformance
.
get
(
7
));
newValue1
.
put
(
COLUMN_TIXSTAND
,
(
String
)
currentPerformance
.
get
(
8
));
newValue2
.
put
(
COLUMN_TIXSTAGE
,
(
String
)
currentPerformance
.
get
(
9
));
newValue3
.
put
(
COLUMN_TIXGRASS
,
(
String
)
currentPerformance
.
get
(
10
));
newValue4
.
put
(
COLUMN_TIXBOATA
,
(
String
)
currentPerformance
.
get
(
11
));
newValue5
.
put
(
COLUMN_TIXBOATB
,
(
String
)
currentPerformance
.
get
(
12
));
newValue6
.
put
(
COLUMN_TIXRIVERBANK
,
(
String
)
currentPerformance
.
get
(
13
));
newValue7
.
put
(
COLUMN_TIXINCIRC
,
(
String
)
currentPerformance
.
get
(
14
));
newValue8
.
put
(
COLUMN_TIXOUTCIRC
,
(
String
)
currentPerformance
.
get
(
15
));
String
whereState
=
COLUMN_NAME
+
" = "
+
"\""
+
currentPerformance
.
get
(
0
)
+
"\""
;
SQLiteDatabase
db
=
this
.
getWritableDatabase
();
db
.
update
(
TABLE_PERFORMANCES
,
newValue
,
whereState
,
null
);
db
.
update
(
TABLE_PERFORMANCES
,
newValue1
,
whereState
,
null
);
db
.
update
(
TABLE_PERFORMANCES
,
newValue2
,
whereState
,
null
);
db
.
update
(
TABLE_PERFORMANCES
,
newValue3
,
whereState
,
null
);
db
.
update
(
TABLE_PERFORMANCES
,
newValue4
,
whereState
,
null
);
db
.
update
(
TABLE_PERFORMANCES
,
newValue5
,
whereState
,
null
);
db
.
update
(
TABLE_PERFORMANCES
,
newValue6
,
whereState
,
null
);
db
.
update
(
TABLE_PERFORMANCES
,
newValue7
,
whereState
,
null
);
db
.
update
(
TABLE_PERFORMANCES
,
newValue8
,
whereState
,
null
);
db
.
close
();
}
public
ArrayList
getBookingInfo
()
{
ArrayList
<
ArrayList
<
String
>>
bookingInfoList
=
new
ArrayList
<>();
//Create query to select user from table
String
query
=
"SELECT * FROM "
+
TABLE_BOOKINGS
;
//Establish DB connection
SQLiteDatabase
db
=
this
.
getWritableDatabase
();
//Execute query
Cursor
cursor
=
db
.
rawQuery
(
query
,
null
);
String
info
;
cursor
.
moveToFirst
();
for
(
int
i
=
0
;
i
<
cursor
.
getCount
();
i
++){
ArrayList
<
String
>
tempList
=
new
ArrayList
<>();
for
(
int
column
=
0
;
column
<
cursor
.
getColumnCount
();
column
++)
{
info
=
cursor
.
getString
(
column
);
tempList
.
add
(
info
);
}
bookingInfoList
.
add
(
tempList
);
cursor
.
moveToNext
();
}
//Close DB
cursor
.
close
();
db
.
close
();
return
bookingInfoList
;
}
public
void
addBooking
(
String
bookingID
,
String
name
,
ArrayList
tickInfo
)
{
ContentValues
newValues
=
new
ContentValues
();
newValues
.
put
(
COLUMN_BOOKINGID
,
bookingID
);
newValues
.
put
(
COLUMN_PERFORMANCENAME
,
name
);
newValues
.
put
(
COLUMN_TICKETINFO
,
tickInfo
.
toString
());
//Establish DB connection
SQLiteDatabase
db
=
this
.
getWritableDatabase
();
db
.
insert
(
TABLE_BOOKINGS
,
null
,
newValues
);
//Store booking details
db
.
close
();
}
public
void
cancelBooking
(
String
playName
)
{
SQLiteDatabase
db
=
this
.
getWritableDatabase
();
db
.
delete
(
TABLE_BOOKINGS
,
COLUMN_PERFORMANCENAME
+
"="
+
playName
,
null
);
db
.
close
();
}
//Upgrade DB (to satisfy extends f SQLiteOpenHelper)
//Upgrade DB (to satisfy extends f SQLiteOpenHelper)
@Override
@Override
...
...
app/src/main/java/com/example/no1theatrecompany/IdleData2.java
0 → 100644
View file @
5681a163
package
com
.
example
.
no1theatrecompany
;
public
class
IdleData2
{
String
name
;
String
ticketInfo
;
String
bookingID
;
IdleData2
(
String
name
,
String
ticketInfo
,
String
bookingID
)
{
this
.
name
=
name
;
this
.
bookingID
=
bookingID
;
this
.
ticketInfo
=
ticketInfo
;
}
}
app/src/main/java/com/example/no1theatrecompany/IdleViewHolder.java
View file @
5681a163
...
@@ -13,7 +13,7 @@ public class IdleViewHolder extends RecyclerView.ViewHolder
...
@@ -13,7 +13,7 @@ public class IdleViewHolder extends RecyclerView.ViewHolder
IdleViewHolder
(
View
v
)
{
IdleViewHolder
(
View
v
)
{
super
(
v
);
super
(
v
);
nameText
=
itemView
.
findViewById
(
R
.
id
.
performanceName
);
nameText
=
itemView
.
findViewById
(
R
.
id
.
performance
Book
Name
);
dateText
=
itemView
.
findViewById
(
R
.
id
.
performanceDate
);
dateText
=
itemView
.
findViewById
(
R
.
id
.
performanceDate
);
ticketsLeftText
=
itemView
.
findViewById
(
R
.
id
.
ticketsLeft
);
ticketsLeftText
=
itemView
.
findViewById
(
R
.
id
.
ticketsLeft
);
}
}
...
...
app/src/main/java/com/example/no1theatrecompany/IdleViewHolder2.java
0 → 100644
View file @
5681a163
package
com
.
example
.
no1theatrecompany
;
import
android.view.View
;
import
android.widget.Button
;
import
android.widget.TextView
;
import
androidx.recyclerview.widget.RecyclerView
;
public
class
IdleViewHolder2
extends
RecyclerView
.
ViewHolder
{
TextView
nameText
;
TextView
ticketInfoText
;
TextView
bookingIDText
;
Button
cancelBookingBtnButton
;
IdleViewHolder2
(
View
v
)
{
super
(
v
);
nameText
=
itemView
.
findViewById
(
R
.
id
.
performanceBookName
);
ticketInfoText
=
itemView
.
findViewById
(
R
.
id
.
ticketsBooked
);
bookingIDText
=
itemView
.
findViewById
(
R
.
id
.
bookingReference
);
cancelBookingBtnButton
=
itemView
.
findViewById
(
R
.
id
.
cancelBookingBtn
);
}
void
setData
(
IdleData2
data
)
{
System
.
out
.
println
(
data
.
ticketInfo
);
nameText
.
setText
(
data
.
name
);
ticketInfoText
.
setText
(
data
.
ticketInfo
);
bookingIDText
.
setText
(
data
.
bookingID
);
}
}
\ No newline at end of file
app/src/main/java/com/example/no1theatrecompany/MainActivity.java
View file @
5681a163
...
@@ -25,11 +25,11 @@ public class MainActivity extends AppCompatActivity {
...
@@ -25,11 +25,11 @@ public class MainActivity extends AppCompatActivity {
setContentView
(
R
.
layout
.
activity_main
);
setContentView
(
R
.
layout
.
activity_main
);
//Get bundle from login page
//Get bundle from login page
Bundle
loginBundle
=
getIntent
().
getExtras
();
//
Bundle loginBundle = getIntent().getExtras();
String
currentUser
=
loginBundle
.
getString
(
"currentUser"
);
//
String currentUser = loginBundle.getString("currentUser");
TextView
usernameTextView
=
(
TextView
)
findViewById
(
R
.
id
.
usernameTextView
);
//
TextView usernameTextView = (TextView) findViewById(R.id.usernameTextView);
usernameTextView
.
setText
(
currentUser
);
//
usernameTextView.setText(currentUser);
performanceList
=
new
ArrayList
<>();
performanceList
=
new
ArrayList
<>();
...
@@ -74,6 +74,10 @@ public class MainActivity extends AppCompatActivity {
...
@@ -74,6 +74,10 @@ public class MainActivity extends AppCompatActivity {
filterPerformances
();
filterPerformances
();
}
}
public
void
myBookingsBtn
(
View
view
)
{
startActivity
(
new
Intent
(
this
,
myBookingsActivity
.
class
));
}
public
void
filterPerformances
()
{
public
void
filterPerformances
()
{
boolean
flashIsChecked
=
((
CheckBox
)
findViewById
(
R
.
id
.
flashCheckBox
)).
isChecked
();
boolean
flashIsChecked
=
((
CheckBox
)
findViewById
(
R
.
id
.
flashCheckBox
)).
isChecked
();
boolean
stepsIsChecked
=
((
CheckBox
)
findViewById
(
R
.
id
.
stepsCheckBox
)).
isChecked
();
boolean
stepsIsChecked
=
((
CheckBox
)
findViewById
(
R
.
id
.
stepsCheckBox
)).
isChecked
();
...
...
app/src/main/java/com/example/no1theatrecompany/myBookingsActivity.java
0 → 100644
View file @
5681a163
package
com
.
example
.
no1theatrecompany
;
import
android.content.Context
;
import
android.content.Intent
;
import
android.os.Bundle
;
import
android.view.View
;
import
androidx.appcompat.app.AppCompatActivity
;
import
androidx.recyclerview.widget.LinearLayoutManager
;
import
androidx.recyclerview.widget.RecyclerView
;
import
java.util.ArrayList
;
import
java.util.List
;
public
class
myBookingsActivity
extends
AppCompatActivity
{
BookingsPageAdapter
adapter
;
ArrayList
<
IdleData2
>
bookingList
;
@Override
protected
void
onCreate
(
Bundle
savedInstanceState
)
{
super
.
onCreate
(
savedInstanceState
);
setContentView
(
R
.
layout
.
mybookings_page
);
bookingList
=
new
ArrayList
<>();
RecyclerView
recyclerObj
=
findViewById
(
R
.
id
.
bookingsRecycler
);
recyclerObj
.
setLayoutManager
(
new
LinearLayoutManager
(
this
));
adapter
=
new
BookingsPageAdapter
(
this
,
bookingList
);
recyclerObj
.
setAdapter
(
adapter
);
//Connect to DB
DBConnector
connector
=
new
DBConnector
(
this
,
null
);
ArrayList
bookingInfoInfoList
=
connector
.
getBookingInfo
();
//Display items of performanceInfoList
for
(
int
i
=
0
;
i
<
bookingInfoInfoList
.
size
();
i
++)
{
ArrayList
tempList
=
(
ArrayList
)
bookingInfoInfoList
.
get
(
i
);
System
.
out
.
println
(
tempList
.
get
(
0
));
System
.
out
.
println
(
tempList
);
bookingList
.
add
(
bookingList
.
size
(),
new
IdleData2
(
tempList
.
get
(
1
).
toString
(),
tempList
.
get
(
2
).
toString
(),
tempList
.
get
(
0
).
toString
()));
}
}
public
void
cancelBooking
(
View
view
)
{
}
}
app/src/main/java/com/example/no1theatrecompany/performanceInfoPage.java
View file @
5681a163
...
@@ -21,6 +21,7 @@ import androidx.appcompat.app.AppCompatActivity;
...
@@ -21,6 +21,7 @@ import androidx.appcompat.app.AppCompatActivity;
import
java.util.ArrayList
;
import
java.util.ArrayList
;
import
java.util.List
;
import
java.util.List
;
import
java.util.Random
;
public
class
performanceInfoPage
extends
AppCompatActivity
{
public
class
performanceInfoPage
extends
AppCompatActivity
{
...
@@ -132,7 +133,7 @@ public class performanceInfoPage extends AppCompatActivity {
...
@@ -132,7 +133,7 @@ public class performanceInfoPage extends AppCompatActivity {
ArrayList
workingTicketInfo
=
getTicketInfo
(
currentPerformance
);
ArrayList
workingTicketInfo
=
getTicketInfo
(
currentPerformance
);
LinearLayout
linearLayout3
=
(
LinearLayout
)
findViewById
(
R
.
id
.
bookTicketsLayout3
);
LinearLayout
linearLayout3
=
(
LinearLayout
)
findViewById
(
R
.
id
.
bookTicketsLayout3
);
System
.
out
.
println
(
workingTicketInfo
);
for
(
int
i
=
0
;
i
<
workingTicketInfo
.
size
();
i
++)
{
for
(
int
i
=
0
;
i
<
workingTicketInfo
.
size
();
i
++)
{
String
currentTicket
=
workingTicketInfo
.
get
(
i
).
toString
();
String
currentTicket
=
workingTicketInfo
.
get
(
i
).
toString
();
...
@@ -154,11 +155,31 @@ public class performanceInfoPage extends AppCompatActivity {
...
@@ -154,11 +155,31 @@ public class performanceInfoPage extends AppCompatActivity {
splitItems
[
0
]
=
String
.
valueOf
(
Integer
.
parseInt
(
splitItems
[
0
])
-
ticketNumInt
);
splitItems
[
0
]
=
String
.
valueOf
(
Integer
.
parseInt
(
splitItems
[
0
])
-
ticketNumInt
);
String
unsplitSplit
=
splitItems
[
0
]+
","
+
splitItems
[
1
]+
","
+
splitItems
[
2
];
String
unsplitSplit
=
splitItems
[
0
]+
","
+
splitItems
[
1
]+
","
+
splitItems
[
2
];
for
(
int
x
=
0
;
x
>
currentPerformance
.
size
();
x
++)
{
for
(
int
x
=
0
;
x
<
currentPerformance
.
size
();
x
++)
{
if
(
currentPerformance
.
get
(
x
)
==
(
currentTicket
))
{
currentPerformance
.
set
(
x
,
unsplitSplit
);
//Connect to DB
DBConnector
connector
=
new
DBConnector
(
this
,
null
);
connector
.
updateDBTickets
(
currentPerformance
);
break
;
}
}
}
}
}
DBConnector
connector
=
new
DBConnector
(
this
,
null
);
String
bookingID
=
createBookingID
();
System
.
out
.
println
(
bookingID
);
connector
.
addBooking
(
bookingID
,
currentPerformance
.
get
(
0
).
toString
(),
workingTicketInfo
);
Intent
intent
=
new
Intent
(
this
,
MainActivity
.
class
);
startActivity
(
intent
);
}
public
String
createBookingID
()
{
int
upper
=
10000
;
Random
rand
=
new
Random
();
String
bookingID
=
String
.
valueOf
(
rand
.
nextInt
(
upper
));
return
bookingID
;
}
}
}
}
app/src/main/res/layout/activity_main.xml
View file @
5681a163
...
@@ -15,16 +15,6 @@
...
@@ -15,16 +15,6 @@
app:layout_constraintStart_toStartOf=
"parent"
app:layout_constraintStart_toStartOf=
"parent"
app:layout_constraintTop_toTopOf=
"parent"
>
app:layout_constraintTop_toTopOf=
"parent"
>
<TextView
android:id=
"@+id/usernameTextView"
android:layout_width=
"108dp"
android:layout_height=
"23dp"
android:layout_marginTop=
"16dp"
app:layout_constraintEnd_toEndOf=
"parent"
app:layout_constraintHorizontal_bias=
"0.947"
app:layout_constraintStart_toStartOf=
"parent"
app:layout_constraintTop_toTopOf=
"parent"
/>
<Button
<Button
android:id=
"@+id/logOutBtn"
android:id=
"@+id/logOutBtn"
android:layout_width=
"wrap_content"
android:layout_width=
"wrap_content"
...
@@ -36,6 +26,17 @@
...
@@ -36,6 +26,17 @@
app:layout_constraintStart_toStartOf=
"parent"
app:layout_constraintStart_toStartOf=
"parent"
app:layout_constraintTop_toTopOf=
"parent"
/>
app:layout_constraintTop_toTopOf=
"parent"
/>
<Button
android:id=
"@+id/myBookingsBtn"
android:layout_width=
"wrap_content"
android:layout_height=
"48dp"
android:layout_marginTop=
"16dp"
android:layout_marginEnd=
"16dp"
android:onClick=
"myBookingsBtn"
android:text=
"Bookings"
app:layout_constraintEnd_toEndOf=
"@+id/imageView"
app:layout_constraintTop_toTopOf=
"parent"
/>
<ImageView
<ImageView
android:id=
"@+id/imageView"
android:id=
"@+id/imageView"
android:layout_width=
"411dp"
android:layout_width=
"411dp"
...
...
app/src/main/res/layout/booking_item.xml
0 → 100644
View file @
5681a163
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
xmlns:app=
"http://schemas.android.com/apk/res-auto"
xmlns:tools=
"http://schemas.android.com/tools"
android:id=
"@+id/linearLayoutPerf"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:layout_marginStart=
"5sp"
android:layout_marginTop=
"10sp"
android:layout_marginEnd=
"10sp"
android:layout_marginBottom=
"10sp"
android:background=
"@color/beigeWhite"
>
<TextView
android:id=
"@+id/performanceBookName"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:text=
"TextView"
android:textAlignment=
"center"
android:textSize=
"20sp"
app:layout_constraintEnd_toEndOf=
"parent"
app:layout_constraintHorizontal_bias=
"0.5"
app:layout_constraintStart_toStartOf=
"parent"
app:layout_constraintTop_toTopOf=
"parent"
app:layout_constraintVertical_chainStyle=
"packed"
/>
<TextView
android:id=
"@+id/ticketsBooked"
android:layout_width=
"wrap_content"
android:layout_height=
"22dp"
android:layout_marginStart=
"10dp"
android:layout_marginTop=
"20dp"
android:text=
"TextView"
android:textSize=
"16sp"
app:layout_constraintStart_toEndOf=
"@+id/textView2"
app:layout_constraintTop_toBottomOf=
"@+id/performanceBookName"
/>
<TextView
android:id=
"@+id/textView2"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginStart=
"16dp"
android:layout_marginTop=
"20dp"
android:text=
"Tickets Booked:"
android:textSize=
"16sp"
app:layout_constraintStart_toStartOf=
"parent"
app:layout_constraintTop_toBottomOf=
"@+id/performanceBookName"
/>
<TextView
android:id=
"@+id/textView3"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginStart=
"16dp"
android:layout_marginTop=
"30dp"
android:layout_marginBottom=
"20dp"
android:text=
"Booking Reference: "
app:layout_constraintBottom_toBottomOf=
"parent"
app:layout_constraintStart_toStartOf=
"parent"
app:layout_constraintTop_toBottomOf=
"@+id/textView2"
/>
<TextView
android:id=
"@+id/bookingReference"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginStart=
"10dp"
android:layout_marginTop=
"30dp"
android:layout_weight=
"1"
android:text=
"TextView"
app:layout_constraintStart_toEndOf=
"@+id/textView3"
app:layout_constraintTop_toBottomOf=
"@+id/textView2"
/>
<Button
android:id=
"@+id/cancelBookingBtn"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginEnd=
"16dp"
android:layout_marginBottom=
"16dp"
android:onClick=
"cancelBooking"
android:text=
"Cancel"
app:layout_constraintBottom_toBottomOf=
"parent"
app:layout_constraintEnd_toEndOf=
"parent"
/>
</androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file
app/src/main/res/layout/mybookings_page.xml
0 → 100644
View file @
5681a163
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
xmlns:app=
"http://schemas.android.com/apk/res-auto"
xmlns:tools=
"http://schemas.android.com/tools"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
android:background=
"@color/beigeWhite"
tools:context=
".myBookingsActivity"
>
<Button
android:id=
"@+id/backBtn1"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginStart=
"16dp"
android:layout_marginTop=
"16dp"
android:text=
"Back"
app:layout_constraintStart_toStartOf=
"parent"
app:layout_constraintTop_toTopOf=
"parent"
/>
<LinearLayout
android:layout_width=
"0dp"
android:layout_height=
"665dp"
android:layout_marginStart=
"1dp"
android:layout_marginTop=
"10dp"
android:layout_marginEnd=
"1dp"
android:orientation=
"vertical"
android:background=
"@color/beige"
app:layout_constraintEnd_toEndOf=
"parent"
app:layout_constraintStart_toStartOf=
"parent"
app:layout_constraintTop_toBottomOf=
"@+id/backBtn1"
>
<TextView
android:id=
"@+id/textViewPerformances2"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:fontFamily=
"serif"
android:text=
"My Bookings"
android:textAlignment=
"center"
android:textSize=
"24sp"
android:background=
"@color/beigeWhite"
android:textStyle=
"bold"
app:layout_constraintEnd_toEndOf=
"parent"
app:layout_constraintHorizontal_bias=
"0.5"
app:layout_constraintStart_toStartOf=
"parent"
app:layout_constraintTop_toTopOf=
"parent"
/>
<androidx.recyclerview.widget.RecyclerView
android:id=
"@+id/bookingsRecycler"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
/>
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file
app/src/main/res/layout/performance_item.xml
View file @
5681a163
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
xmlns:app=
"http://schemas.android.com/apk/res-auto"
xmlns:app=
"http://schemas.android.com/apk/res-auto"
xmlns:tools=
"http://schemas.android.com/tools"
xmlns:tools=
"http://schemas.android.com/tools"
android:id=
"@+id/linearLayout"
android:id=
"@+id/linearLayout
Perf
"
android:layout_width=
"match_parent"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_marginStart=
"5sp"
android:layout_marginStart=
"5sp"
...
@@ -12,7 +12,7 @@
...
@@ -12,7 +12,7 @@
android:background=
"@color/beigeWhite"
>
android:background=
"@color/beigeWhite"
>
<TextView
<TextView
android:id=
"@+id/performanceName"
android:id=
"@+id/performance
Book
Name"
android:layout_width=
"wrap_content"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_height=
"wrap_content"
android:text=
"TextView"
android:text=
"TextView"
...
@@ -35,7 +35,7 @@
...
@@ -35,7 +35,7 @@
android:textSize=
"16sp"
android:textSize=
"16sp"
app:layout_constraintBottom_toBottomOf=
"parent"
app:layout_constraintBottom_toBottomOf=
"parent"
app:layout_constraintStart_toStartOf=
"parent"
app:layout_constraintStart_toStartOf=
"parent"
app:layout_constraintTop_toBottomOf=
"@+id/performanceName"
/>
app:layout_constraintTop_toBottomOf=
"@+id/performance
Book
Name"
/>
<TextView
<TextView
android:id=
"@+id/ticketsLeft"
android:id=
"@+id/ticketsLeft"
...
@@ -48,7 +48,7 @@
...
@@ -48,7 +48,7 @@
android:textSize=
"16sp"
android:textSize=
"16sp"
app:layout_constraintBottom_toBottomOf=
"parent"
app:layout_constraintBottom_toBottomOf=
"parent"
app:layout_constraintEnd_toEndOf=
"parent"
app:layout_constraintEnd_toEndOf=
"parent"
app:layout_constraintTop_toBottomOf=
"@+id/performanceName"
/>
app:layout_constraintTop_toBottomOf=
"@+id/performance
Book
Name"
/>
<TextView
<TextView
android:id=
"@+id/textView2"
android:id=
"@+id/textView2"
...
@@ -61,7 +61,7 @@
...
@@ -61,7 +61,7 @@
android:textSize=
"16sp"
android:textSize=
"16sp"
app:layout_constraintBottom_toBottomOf=
"parent"
app:layout_constraintBottom_toBottomOf=
"parent"
app:layout_constraintEnd_toStartOf=
"@+id/ticketsLeft"
app:layout_constraintEnd_toStartOf=
"@+id/ticketsLeft"
app:layout_constraintTop_toBottomOf=
"@+id/performanceName"
/>
app:layout_constraintTop_toBottomOf=
"@+id/performance
Book
Name"
/>
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file
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