Skip to content

Commit

Permalink
fix alignment
Browse files Browse the repository at this point in the history
  • Loading branch information
VishnuSanal committed May 22, 2022
1 parent d4e7a28 commit 0e1e2e3
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 4 deletions.
14 changes: 12 additions & 2 deletions app/src/main/res/layout-v23/activity_main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,8 @@
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:fontFamily="@font/poppins"
android:paddingStart="4dp"
android:paddingEnd="4dp"
android:textColor="@color/textColorLight"
android:textSize="12sp"
app:layout_constraintBaseline_toBottomOf="@id/slider"
Expand All @@ -116,6 +118,8 @@
android:layout_height="wrap_content"
android:layout_marginEnd="8dp"
android:fontFamily="@font/poppins"
android:paddingStart="4dp"
android:paddingEnd="4dp"
android:textColor="@color/textColorLight"
android:textSize="12sp"
app:layout_constraintBaseline_toBottomOf="@id/slider"
Expand All @@ -126,7 +130,10 @@
android:id="@+id/playbackSpeedButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="4dp"
android:layout_marginStart="8dp"
android:layout_marginTop="4dp"
android:layout_marginEnd="4dp"
android:layout_marginBottom="4dp"
android:background="?attr/selectableItemBackgroundBorderless"
android:clickable="true"
android:focusable="true"
Expand Down Expand Up @@ -162,7 +169,10 @@
android:id="@+id/repeatButton"
android:layout_width="32dp"
android:layout_height="32dp"
android:layout_margin="4dp"
android:layout_marginStart="4dp"
android:layout_marginTop="4dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="4dp"
android:background="?attr/selectableItemBackgroundBorderless"
android:clickable="true"
android:contentDescription="@string/repeat_track_toggle"
Expand Down
14 changes: 12 additions & 2 deletions app/src/main/res/layout/activity_main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,8 @@
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:fontFamily="@font/poppins"
android:paddingStart="4dp"
android:paddingEnd="4dp"
android:textColor="@color/textColorLight"
android:textSize="12sp"
app:layout_constraintBaseline_toBottomOf="@id/slider"
Expand All @@ -116,6 +118,8 @@
android:layout_height="wrap_content"
android:layout_marginEnd="8dp"
android:fontFamily="@font/poppins"
android:paddingStart="4dp"
android:paddingEnd="4dp"
android:textColor="@color/textColorLight"
android:textSize="12sp"
app:layout_constraintBaseline_toBottomOf="@id/slider"
Expand Down Expand Up @@ -147,7 +151,10 @@
android:id="@+id/playPauseButton"
android:layout_width="48dp"
android:layout_height="48dp"
android:layout_margin="4dp"
android:layout_marginStart="4dp"
android:layout_marginTop="4dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="4dp"
android:background="?attr/selectableItemBackgroundBorderless"
android:contentDescription="@string/play_pause_button"
android:padding="4dp"
Expand All @@ -162,7 +169,10 @@
android:id="@+id/repeatButton"
android:layout_width="32dp"
android:layout_height="32dp"
android:layout_margin="4dp"
android:layout_marginStart="8dp"
android:layout_marginTop="4dp"
android:layout_marginEnd="4dp"
android:layout_marginBottom="4dp"
android:background="?attr/selectableItemBackgroundBorderless"
android:clickable="true"
android:focusable="true"
Expand Down

0 comments on commit 0e1e2e3

Please sign in to comment.