-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Material Design #1076
Material Design #1076
Conversation
…pported by AppCompat anymore
…ar with portrait mode
@jancborchardt see attached some screenshots for design check :)
So for now I would consider it ready-for-testing and code review @davivel @tobiasKaminsky @jancborchardt @stoyicker I tested it on a Nexus 5 running 5.1.1 Since I got asked this, I work on the latest version of Android Studio + Gradle |
@ All I fixed the build for ANT/Eclipse, at least it is working now as far as I can see. Can anyone check this? @davivel for example, since I do not use Eclipse ADT anymore or ant - it works on my machine and in travis-ci so far. |
…de doesn't habe a title
One additional comment, the progress bar below the action bar isn't too nicely done (grey background atm) but I couldn't find a way to add it to the action bar itself. This could be done with a toolbar since that on eis a "normal" ViewGroup but didn't find a way to use it on the Activity since when navigating to a folder the toolbar would have to show a back/up navigation which I got to work but the click event didn't do anything maybe because of the active drawer element (being) already closed. Thus is might be fixable be removing the drawer from the toolbar when navigating to a folder and read it when the user is back on the root folder. This would need some experimenting since I could get this to work on the weekend and thus moved back to the actionbar which has it's downsides like the progress bar for example. |
@AndyScherzinger nice :) some things, mainly details:
|
Reviewing the latest changes |
@AndyScherzinger can we change the top status bar colour when the files are uploading or downloading and in case of any error it shows a different colour.. suggest? |
@supportreq, not in this PR. We have to put an end to it in some point. Please, open a new issue for your suggestion. |
I agree with @davivel let's finish up this PR since it'll be a never ending story otherwise. As for @supportreq's idea of using the action bar for visualizing errors in up/downloading: |
not sure if this is a related error but got the following when returning back from a video preview: java.lang.NullPointerException: Attempt to invoke virtual method 'boolean android.support.v4.widget.DrawerLayout.isDrawerOpen(int)' on a null object reference |
@supportreq that definitely is a bug beeing introduced with the material changes. How woul I reproduce this? (tried an mp4 file, but the app isn't able to open this format, so I am not sure what kind of video file I need, to reproduce and fix) |
@supportreq can you update and try again? I added an untested fix which should prevent the NullPointerException. |
@AndyScherzinger, @supportreq |
@AndyScherzinger works! thanks for the fix!! :) |
👍 |
PR merged and branch deleted. |
👏 👏 |
@AndyScherzinger yeah, fantastic work! Honestly, I don't think I've ever seen a change of this size be completed so fast. Incredible. All we could do was sit back and watch :) |
@AndyScherzinger master branch is also updated with develop branch. |
Thanks @rperezb @masensio @purigarcia! Glad I can contribute and looking forward to the future PRs 😃 |
next PR in line is now #1090 |
WOOOHOO! :D Congrats & major thanks @AndyScherzinger! Now onto #1090 and #1100. :) |
Hi everybody,
as per discussion, I created a separate branch and I also reimplemented the material changes from scratch not using the toolbar just the actionbar.
Things done:
Open Issue:
@davivel @tobiasKaminsky @jancborchardt @stoyicker