51 lines
1.9 KiB
XML
51 lines
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="64dp"
|
|
android:background="?attr/selectableItemBackground"
|
|
android:clickable="true"
|
|
android:focusable="true"
|
|
android:paddingHorizontal="24dp"
|
|
android:paddingVertical="16dp">
|
|
|
|
<TextView
|
|
android:id="@+id/tvSettingTitle"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintEnd_toStartOf="@id/tvSettingValue"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
android:ellipsize="end"
|
|
android:singleLine="true"
|
|
android:text="Configuração"
|
|
android:textColor="@color/text_primary"
|
|
android:textSize="16sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/tvSettingValue"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
app:layout_constraintEnd_toStartOf="@id/ivChevron"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
android:layout_marginEnd="8dp"
|
|
app:layout_goneMarginEnd="0dp"
|
|
android:text="Valor"
|
|
android:textColor="@color/text_secondary"
|
|
android:textSize="14sp" />
|
|
|
|
<ImageView
|
|
android:id="@+id/ivChevron"
|
|
android:layout_width="20dp"
|
|
android:layout_height="20dp"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
android:src="@drawable/ic_back"
|
|
android:rotation="180"
|
|
android:alpha="0.3" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|