Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?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"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical">
- <ImageView
- android:id="@+id/item_new_vacation_date_dates_ic"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginStart="@dimen/side_margin"
- android:layout_marginTop="@dimen/side_margin"
- android:layout_marginBottom="@dimen/side_margin"
- android:src="@drawable/ic_new_vacation_date"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toTopOf="parent" />
- <TextView
- android:id="@+id/item_new_vacation_date_title"
- style="@style/IntranetTheme.Text.Primary"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginStart="@dimen/inner_margin"
- android:text="@string/new_vacation_dates"
- app:layout_constraintBottom_toBottomOf="@id/item_new_vacation_date_dates_ic"
- app:layout_constraintStart_toEndOf="@id/item_new_vacation_date_dates_ic"
- app:layout_constraintTop_toTopOf="@id/item_new_vacation_date_dates_ic" />
- <TextView
- android:id="@+id/item_new_vacation_date_dates"
- style="@style/IntranetTheme.Text.Secondary"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginStart="@dimen/inner_margin"
- android:layout_marginEnd="@dimen/inner_margin"
- android:ellipsize="end"
- android:gravity="end"
- android:maxLines="1"
- app:layout_constraintBottom_toBottomOf="@id/item_new_vacation_date_arrow_ic"
- app:layout_constraintEnd_toStartOf="@id/item_new_vacation_date_arrow_ic"
- app:layout_constraintStart_toEndOf="@+id/item_new_vacation_date_title"
- app:layout_constraintTop_toTopOf="@id/item_new_vacation_date_arrow_ic"
- tools:text="17.04.19 - 23.04.19" />
- <ImageView
- android:id="@+id/item_new_vacation_date_arrow_ic"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginEnd="@dimen/side_margin"
- android:src="@drawable/ic_new_vacation_date_arrow"
- app:layout_constraintBottom_toBottomOf="@id/item_new_vacation_date_dates_ic"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintTop_toTopOf="@id/item_new_vacation_date_dates_ic" />
- </androidx.constraintlayout.widget.ConstraintLayout>
Advertisement
Add Comment
Please, Sign In to add comment