Skip to content
This repository has been archived by the owner on Apr 12, 2022. It is now read-only.

Floating actions menu #2335

Merged
merged 21 commits into from
Jul 2, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
0d48801
Migrate RelativeLayouts in activity_home.xml to a single ConstraintLa…
Dominaezzz Jun 2, 2018
b60c6c6
Migrate AlertDialog for VectorHomeActivity to use a FloatingActionMenu.
Dominaezzz Jun 3, 2018
c738e96
Migrate RelativeLayouts in activity_home.xml to a single ConstraintLa…
Dominaezzz Jun 2, 2018
8f00609
Migrate AlertDialog for VectorHomeActivity to use a FloatingActionMenu.
Dominaezzz Jun 3, 2018
d5043fc
Add credit to the library "FloatingActionMenu".
Dominaezzz Jun 8, 2018
e965e19
Rename and create new methods handling the Floating Action Menu for c…
Dominaezzz Jun 8, 2018
7511580
Make Floating Action Menu collapse after selection.
Dominaezzz Jun 8, 2018
7a7186b
Remove unnecessary comment.
Dominaezzz Jun 8, 2018
5f7489d
Remove previous FloatingActionButton onClick() handler.
Dominaezzz Jun 8, 2018
603e4ef
Get main Floating Action Button only once.
Dominaezzz Jun 8, 2018
9a0de73
Better handling of touch guard.
Dominaezzz Jun 8, 2018
958e425
Remove old click listener.
Dominaezzz Jun 8, 2018
d396dd3
Remove unnecessary barrier.
Dominaezzz Jun 8, 2018
e3cb8ae
Use existing tinting utility.
Dominaezzz Jun 9, 2018
329a813
Improve on hiding Floating Action Button on scroll.
Dominaezzz Jun 9, 2018
1f7310f
Merge remote-tracking branch 'origin/floating_actions_menu' into floa…
Dominaezzz Jun 9, 2018
b0c1905
Merge remote-tracking branch 'remotes/upstream/develop' into floating…
t3chguy Jun 9, 2018
b1a038d
post-merge fix
t3chguy Jun 10, 2018
dc8a80c
fix merge-broken indentation and split intermediate variable for linter
t3chguy Jun 10, 2018
e95b4b4
Fix touchGuard to not be clickable when floating action menu is closed.
Dominaezzz Jun 11, 2018
83e2a85
Remove unused 'mFabDialog' member variable.
Dominaezzz Jun 11, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions vector/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,7 @@ dependencies {

// UI
implementation 'com.android.support.constraint:constraint-layout:1.1.0'
implementation 'com.getbase:floatingactionbutton:1.10.1'
Copy link
Member

Choose a reason for hiding this comment

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

Can you credit this library in the file open_source_licenses.html please? There is already a section for Apache 2.0 license

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I have credited the library as requested.

Copy link
Member

Choose a reason for hiding this comment

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

Thanks


// Network
implementation 'com.squareup.retrofit2:retrofit:2.4.0'
Expand Down
5 changes: 5 additions & 0 deletions vector/src/main/assets/open_source_licenses.html
Original file line number Diff line number Diff line change
Expand Up @@ -353,6 +353,11 @@ <h3>
<br/>
Copyright 2013 Jake Wharton
</li>
<li>
<b>FloatingActionButton</b>
<br />
Copyright (C) 2014 Jerzy Chalupski
</li>
</ul>
<pre>
Apache License
Expand Down
Loading