Skip to content

Commit

Permalink
Recorder: Equally space bottom buttons on main screen
Browse files Browse the repository at this point in the history
Change-Id: I9415a148c3fe0edb1c409074053ffb36d9a1205c
  • Loading branch information
SebaUbuntu committed Feb 24, 2024
1 parent 829dca7 commit e8f5b1c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions app/src/main/res/layout/activity_main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,11 @@
<ImageView
android:id="@+id/sound_pause_resume"
style="@style/AppTheme.ImageButton"
android:layout_marginEnd="16dp"
android:contentDescription="@null"
android:visibility="gone"
app:layout_constraintBottom_toBottomOf="@id/sound_fab"
app:layout_constraintEnd_toStartOf="@id/sound_fab"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="@id/sound_fab"
app:tint="?attr/colorOnBackground"
tools:src="@drawable/avd_pause_to_play"
Expand All @@ -89,22 +89,23 @@
<ImageView
android:id="@+id/sound_list_icon"
style="@style/AppTheme.ImageButton"
android:layout_marginStart="16dp"
android:contentDescription="@string/sound_last_title"
android:src="@drawable/ic_library_music"
app:layout_constraintBottom_toBottomOf="@id/sound_fab"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@id/sound_settings"
app:layout_constraintTop_toTopOf="@id/sound_fab"
app:tint="?attr/colorOnBackground" />

<ImageView
android:id="@+id/sound_settings"
style="@style/AppTheme.ImageButton"
android:layout_marginStart="16dp"
android:contentDescription="@string/sound_last_title"
android:src="@drawable/ic_settings"
app:layout_constraintBottom_toBottomOf="@id/sound_fab"
app:layout_constraintEnd_toStartOf="@+id/sound_list_icon"
app:layout_constraintStart_toEndOf="@id/sound_fab"
app:layout_constraintTop_toTopOf="@id/sound_fab"
app:tint="?attr/colorOnBackground" />

</androidx.constraintlayout.widget.ConstraintLayout>

0 comments on commit e8f5b1c

Please sign in to comment.