agrego icono de opciones a tarjeta de descripcion en perfil

This commit is contained in:
Erik Everardo 2023-12-23 19:31:59 -06:00
parent a95cb8373c
commit b0fa733992

View File

@ -106,11 +106,20 @@
android:maxLines="4" android:maxLines="4"
android:textAlignment="center" android:textAlignment="center"
app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent" app:layout_constraintEnd_toStartOf="@id/description_options_button"
app:layout_constraintStart_toEndOf="@id/play_button_container" app:layout_constraintStart_toEndOf="@id/play_button_container"
app:layout_constraintTop_toTopOf="parent" app:layout_constraintTop_toTopOf="parent"
tools:text="Hi there, I am software developer!" /> tools:text="Hi there, I am software developer!" />
<com.google.android.material.button.MaterialButton
android:id="@+id/description_options_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
style="?attr/materialIconButtonStyle"
app:icon="@drawable/baseline_more_horiz_24"/>
</androidx.constraintlayout.widget.ConstraintLayout> </androidx.constraintlayout.widget.ConstraintLayout>
</com.google.android.material.card.MaterialCardView> </com.google.android.material.card.MaterialCardView>