Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
CS123-CanteeneoAndroid
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
Willard Torres
CS123-CanteeneoAndroid
Commits
15839804
Commit
15839804
authored
Dec 04, 2016
by
Willard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add confirm dialog to logout when pressing back would lead to the LoginActivity
parent
70855ed8
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
1 deletion
+15
-1
NavDrawerActivity.java
app/src/main/java/com/testapp/NavDrawerActivity.java
+15
-1
No files found.
app/src/main/java/com/testapp/NavDrawerActivity.java
View file @
15839804
...
...
@@ -155,10 +155,24 @@ public class NavDrawerActivity extends AppCompatActivity implements NavigationVi
DrawerLayout
drawer
=
(
DrawerLayout
)
findViewById
(
R
.
id
.
drawer_layout
);
if
(
drawer
.
isDrawerOpen
(
GravityCompat
.
START
))
{
drawer
.
closeDrawer
(
GravityCompat
.
START
);
}
else
{
if
(
AppUtils
.
isLoggedIn
())
{
new
AlertDialog
.
Builder
(
this
)
.
setTitle
(
"Logout"
)
.
setMessage
(
"Are you sure you want to log out?"
)
.
setPositiveButton
(
R
.
string
.
yes
,
new
DialogInterface
.
OnClickListener
()
{
@Override
public
void
onClick
(
DialogInterface
dialog
,
int
which
)
{
NavDrawerActivity
.
super
.
onBackPressed
();
}
})
.
setNegativeButton
(
R
.
string
.
no
,
null
)
.
show
();
}
else
{
super
.
onBackPressed
();
}
}
}
@Override
public
boolean
onCreateOptionsMenu
(
Menu
menu
)
{
...
...
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