Skip to content

Commit

Permalink
float button to invite friend added
Browse files Browse the repository at this point in the history
  • Loading branch information
keyuls committed Mar 25, 2016
1 parent dee846e commit 7b2e054
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ public void onItemClick(AdapterView<?> parent, View view, int position, long id)
"Rate this app",
"Share",
/*"Report bug or Feedback",*/
"Scoreboard",
getString(R.string.title_section5),
}){
@Override
Expand Down Expand Up @@ -245,6 +246,9 @@ private void selectItem(int position) {
startActivity(Intent.createChooser(intent, "Share"));
break;
case 5:
Intent intentb = new Intent(this.getActivity(), scoreBoardDisplay.class);
startActivity(intentb);
break;
case 6:
LoginManager.getInstance().logOut();
Intent logout = new Intent(this.getActivity(), loginWithFacebook.class);
Expand Down

1 comment on commit 7b2e054

@keyuls
Copy link
Owner Author

@keyuls keyuls commented on 7b2e054 Mar 25, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

scoreboard shortcut in navigation drawer

Please sign in to comment.