Skip to content

Instantly share code, notes, and snippets.

@AlessandroLima66
Last active September 10, 2018 17:44
Show Gist options
  • Save AlessandroLima66/e847b204a6fa365f93b5fc1e981a4e37 to your computer and use it in GitHub Desktop.
Save AlessandroLima66/e847b204a6fa365f93b5fc1e981a4e37 to your computer and use it in GitHub Desktop.
<TextView
android:id="@+id/resumo_pacote_data"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
app:layout_constraintEnd_toStartOf="@+id/resumo_pacote_preco"
app:layout_constraintStart_toStartOf="@+id/resumo_pacote_dias"
app:layout_constraintTop_toBottomOf="@+id/resumo_pacote_dias"
tools:text="08/12 - 10/12 de 2017" />
<TextView
android:id="@+id/resumo_pacote_preco"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginEnd="8dp"
android:textAlignment="textEnd"
android:gravity="end"
android:textColor="@android:color/holo_green_dark"
android:textSize="20sp"
app:layout_constraintBottom_toBottomOf="@+id/resumo_pacote_data"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@id/resumo_pacote_data"
tools:text="R$ 243,99" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment