-
Notifications
You must be signed in to change notification settings - Fork 43
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
For #10: Prevent overlap of pause and resume buttons #75
base: master
Are you sure you want to change the base?
Conversation
@naXa777 can you review this PR and see if it's ok? |
@czlucius please resolve the conflict |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
android:layout_gravity="center_vertical" | ||
android:layout_marginHorizontal="16dp" | ||
app:backgroundTint="@color/primary" | ||
app:elevation="6dp" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
for some reason, app:elevation
has no effect after this change.
to simulate a small screen, I'm using a split screen in landscape mode for testing. Device: Android 12 / Google Pixel 3. please take a look at the screenshots below.
BEFORE your changes (master
branch)
AFTER your changes
as you can see, there's a visual regression. RECORD/STOP and PAUSE/RESUME buttons are now overlapping with the circular progress bar. But buttons should be on top.
Arranges the buttons in a horizontal LinearLayout to prevent overlap.