forked from nickbutcher/plaid
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tweaked transitions into dribbble player profile screen
- Got rid of the text transtion as it wasn't amazing - Added shared enter on the background from some places - Worked around overlay issue :|
- Loading branch information
1 parent
ec854e3
commit 97eb825
Showing
13 changed files
with
124 additions
and
158 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
81 changes: 0 additions & 81 deletions
81
app/src/main/java/io/plaidapp/ui/transitions/TextResizeTransition.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 39 additions & 0 deletions
39
app/src/main/res/transition/dribbble_player_sheet_enter.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
Copyright 2016 Google Inc. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
--> | ||
|
||
<transitionSet | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:transitionOrdering="together" | ||
android:interpolator="@android:interpolator/linear_out_slow_in"> | ||
|
||
<slide | ||
android:slideEdge="bottom" | ||
android:duration="200"> | ||
<targets> | ||
<target android:excludeId="@android:id/navigationBarBackground" /> | ||
<target android:excludeId="@android:id/statusBarBackground" /> | ||
</targets> | ||
</slide> | ||
|
||
<fade android:duration="300"> | ||
<targets> | ||
<target android:targetId="@android:id/navigationBarBackground" /> | ||
<target android:targetId="@android:id/statusBarBackground" /> | ||
</targets> | ||
</fade> | ||
|
||
</transitionSet> |
39 changes: 39 additions & 0 deletions
39
app/src/main/res/transition/dribbble_player_sheet_return.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
Copyright 2016 Google Inc. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
--> | ||
|
||
<transitionSet | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:transitionOrdering="together" | ||
android:interpolator="@android:interpolator/fast_out_linear_in"> | ||
|
||
<slide | ||
android:slideEdge="bottom" | ||
android:duration="200"> | ||
<targets> | ||
<target android:excludeId="@android:id/navigationBarBackground" /> | ||
<target android:excludeId="@android:id/statusBarBackground" /> | ||
</targets> | ||
</slide> | ||
|
||
<fade android:duration="300"> | ||
<targets> | ||
<target android:targetId="@android:id/navigationBarBackground" /> | ||
<target android:targetId="@android:id/statusBarBackground" /> | ||
</targets> | ||
</fade> | ||
|
||
</transitionSet> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.